Javascript contentWindow.document iframe不能正常工作

时间:2013-03-16 17:06:21

标签: javascript jquery

应该这样做:

当用户点击p代码时,它会查看iframe id="jo"的{​​{1}},并弹出alert消息框,其中包含div的内容在id="message-indicator"

然而,这不起作用。

这是我的代码:

$("p").click(function () 
{
    $('#jo').each(function() 
    {
        alert($('#message-indicator', 
                this.contentWindow.document || this.contentDocument).text());
    });
});

0 个答案:

没有答案