我已经在我的 HTML 页面中嵌入了 jQuery 移动页面,但是当我尝试使用 jQuery 访问其内部 div 标签时,find 方法没有返回任何内容。
带有 jQuery 的 HTML
<iframe id="myframe" src="../codiqa/mobile.htm"
style="width: 500px; height: 520px;
border: 1px solid #ccc; margin-top:20px;">
</iframe>
这里
$("#myframe").load(function(){
alert($(this).contents().find('#mobilebutton').html());
});
iframe 中的移动代码
<div id="mobilebutton" data-role="button">Mobile Button</div>