如何在jQuery中获取iframe文档标题的更改事件?

时间:2018-03-02 10:19:36

标签: javascript jquery

我正在尝试在iframe文档标题更改时获取事件。

这是我的代码

var iframeNode = $('<iframe>', {
    src: url,
    frameborder: 0,
    style:"display:none",
    scrolling: 'yes'
});
...
iframeNode[0].onload = function() {
    $(iframeNode[0].contentWindow.document.title).change(function () {
        console.log("Title has changed");
    });
}

然而,当iframe文档标题发生变化时,我没有得到事件。

我也尝试过:

$(iframeNode[0].contentWindow.document.head, "title").change(function () {
   console.log("Title has changed");
});

但结果是一样的。怎么做?

0 个答案:

没有答案