在我的應用我想刪除的div內容,並添加iframe中,這裏是我的代碼刪除DIV內容,並添加iframe的
的index.html
<div data-role="page">
<div data-role="header" >
<div data-role="content" id="contents">
<a href="#" data-role="button" onclick="cif()"><img src="images/zo_connect.png"></a>
</div>
</div><!-- /content -->
</div><!-- /page -->
default.js 功能CIF(){
$("#contents").remove();
$("#contents").html('<iframe src="http://google.com" style="height: 100%; width: 100%"></iframe>');
}
當我刪除的div內容,之後創建的iframe我t不顯示,我需要單擊按鈕後刪除內容,然後在該內容中創建iframe
'裏面的.html()''調用.empty()'(如有必要),所以沒有必要 – Esailija