您好我想访问iframe中的html元素。 这是我的代码
<iframe id="myframe" name="myframe" src='http://someurl.com' width="1200" height="2000">
</iframe>
var content = $('#myframe').html();
alert(content);
if(content.indexOf("ADD A BOOKING ") !== -1)
{
//some code here
}
但我没有得到任何警觉 注意:我在localhost上尝试这个。