我想在其中打開一個'iframe'的彈出式窗口,但是當我打開網站時,它也會在iframe中加載網站(並且需要更多時間來加載網頁)。 這是IFRAME代碼:只在觸發後加載iframe
<div id="popup1" class="ui-content">
<a href="#myPopup" data-rel="popup" data-position-to="window">open</a>
<div data-role="popup" id="myPopup" width="100%" height="100%" data-overlay-theme="b">
<p>This is my picture!</p>
<a href="#pageone" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn-a ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a>
<iframe width="100%" height="700em" name="iframe_pop" src="http://www.w3schools.com/">
<p>Your browser does not support iframes.</p>
</iframe>
</div>
</div>
我怎麼能做出iframe的網站負載只有當我點擊「打開」鏈接?
你的意思是使用按鈕點擊事件,然後加載iframe? – tim