私のアプリケーションでは、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を作成すると表示されない場合、ボタンをクリックした後にコンテンツを削除し、その後そのコンテンツでiframeを作成する必要があります