我想data-role="button"
在窗口调整大小时从锚标记中添加或删除 jquerymobile 属性,这意味着:
<a href=".." class="mobilebutton">Hello</a>
if(windowsize < 700)
$(".mobilebutton").attr("data-role", "button");
else
$(".mobilebutton").removeAttr("data-role");
但它不起作用可能是因为页面已经创建,所以添加data-role
属性没有效果,因为jquerymobile.js
不知道我们添加的这个属性。谁能告诉我解决方法?