JQuery 中动态添加的页面未使用新样式更新我的页面
Posted
技术标签:
【中文标题】JQuery 中动态添加的页面未使用新样式更新我的页面【英文标题】:Dynamically added page in JQuery is not updating my page with the new style 【发布时间】:2017-04-06 16:20:04 【问题描述】:我创建了一个动态生成并将其添加到 html 正文中的函数。但是,它似乎没有用我想要的样式更新。我知道动态添加的内容可能不会继承样式,因此在我的列表视图中我调用了 listview("refresh)。这次我添加了一个 div。我尝试添加 .page() 和其他解决方案,但它们都不是为我工作。正在寻找解决方案。
function pageGenerator()
var strings = "<div data-role='page' id = 'page" + currentId + "' align = 'center' style='background-color: #3e99ff;'><div data-role='main' id = 'content" + currentId + "' class='ui-content'><h1 style='color:#ffffff; text-align:center; font-size: 34px; font-family: 'Quicksand', sans-serif !important;'>" + ArrayIndex[currentId] + "</h1></div><div data-role='footer' data-id='foo1' data-position='fixed'><div data-role='navbar'><ul><li><a href='#welcomescreen'>Home</a></li><li><a href='#about'>About</a></li></ul></div></div></div>";
$("#page_body").append(strings);
// Move to this page by ID '#page'
$.mobile.changePage("#page" + currentId);
console.log(1);
console.log(2);
【问题讨论】:
附加到body
(页面容器),除非您将page_body
指定为页面容器。 ***.com/a/24173950/1771795
我给了我的身体 ID = page_body
【参考方案1】:
$.mobile.initializePage();
之间缺少:
$("#page_body").append(strings);
和 $.mobile.changePage("#page" + currentId);
请检查以下*** answer。你会发现同样的问题和解决方案;)
【讨论】:
你能提供一个结构的示例jsFiddle吗?:)以上是关于JQuery 中动态添加的页面未使用新样式更新我的页面的主要内容,如果未能解决你的问题,请参考以下文章
Easyui中使用jquery或js动态添加元素时出现的样式失效的解决方法