改變ATTR爲什麼沒有此代碼的工作:不能與jQuery Mobile的
$("#page1").live('pageinit', function() {
if (localStorage.fullscreen == "true") {
$("#page1").attr("data-fullscreen", "true"); // doesn't work
alert("should be fullscreen now"); // this works
}
if (localStorage.theme) {
$("header").attr("data-theme", localStorage.theme); // this doesn't work
alert("should be theme " + localStorage.theme); // this works
}
});
According to the docs,它應該工作。我也試過
$("header").data("theme", localStorage.theme);
但這也行不通。
你的意思是 「不工作」?這些屬性很可能已經設置好了,但這不會改變頁面中的任何內容,除非您運行其他代碼或者使用CSS來查看這些屬性。 – jfriend00
你有沒有在不同的瀏覽器中試過這個? – sally