Jquery mobile,从javascript动态添加面板

时间:2015-06-01 20:08:03

标签: javascript jquery-mobile

我有一个html页面,里面有很多jquery移动面板。现在我需要动态地从javascript创建新的面板。所有面板都在具有特定id的div中。我使用getElementById而不是innerHtml来在运行时追加新的div。

问题是jquery div不应该出现,直到我点击打开它的链接。但当我从javacript内部jquery div时,它显示为一个正常的div。似乎jquery移动脚本无法识别我在运行时添加的新div。 任何人都可以帮助我吗?

非常感谢。

这是一个简单的问题示例:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div id="panels">
  <div data-role="panel" id="myPanel"> 
    <h2>Panel Header</h2>
    <p>You can close the panel by clicking outside the panel, pressing the Esc key or by swiping.</p>
  </div> 
</div>

    <a href="#myPanel" class="ui-btn ui-btn-inline ui-corner-all ui-shadow">Open Panel</a>
    <a href="#myPanel2" class="ui-btn ui-btn-inline ui-corner-all ui-shadow">Open Panel2</a>



</body>
<script type="text/javascript">
//now when an event is verified i inner the new jquery mobile panel
e.addEventListener("click", function(){
document.getElementById("panels").innerHTML+='  <div data-role="panel" id="myPanel2"> 
    <h2>Panel Header</h2>
    <p>Text</p>
  </div>';
}, false);
</script>
</html>

1 个答案:

答案 0 :(得分:2)

动态添加面板后,您需要告诉jQuery Mobile初始化它。一种方法是在面板容器上调用enhanceWithin():

$("#btnAdd").on("click", function () {
    var panel = '<div data-role="panel" id="myPanel2"><h2>Panel Header</h2><p>Text</p></div>';
    $("#panels").append(panel).enhanceWithin();
});

另一种方法是直接在新添加的面板div上调用panel()小部件初始化程序;

$("#btnAdd").on("click", function () {
    var panel = '<div data-role="panel" id="myPanel2"><h2>Panel Header</h2><p>Text</p></div>';
    $("#panels").append(panel);
    $("#myPanel2").panel();
});
  

<强> DEMO