我要添加或從窗口大小調整錨標記刪除jquerymobile屬性data-role="button"
意思是這樣的:jquerymobile attibute數據角色=「按鈕」沒有工作
<a href=".." class="mobilebutton">Hello</a>
if(windowsize < 700)
$(".mobilebutton").attr("data-role", "button");
else
$(".mobilebutton").removeAttr("data-role");
但它不工作可能是因爲頁面是已經創建如此添加data-role
屬性不起作用,因爲jquerymobile.js
不知道我們添加的這個屬性。 任何人都可以告訴我這個解決方法嗎?
這是一個類似的問題http://stackoverflow.com/q/10578545/1226698。我舉了一個應該幫助你的例子。 – codaniel