访问跨域中iframe内的内容

时间:2013-11-20 07:32:44

标签: javascript php jquery html iframe

您好我想访问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上尝试这个。

0 个答案:

没有答案