调整事件不会在iframe中触发

时间:2016-04-08 08:41:20

标签: javascript jquery html dom jquery-easyui

有多个iframe和iframe都会在

下面执行一段代码
$(window).resize(function () {
    $('#dg').datagrid('resize', {
        width: $(window).parents().width(),
        height: $(window).parents().height() - h
    }).datagrid('resize', {
        width: $(window).parents().width(),
        height: $(window).parents().height() - h
    });
});

它注册了一个resize事件,但只有先执行代码的iframe才会在调整浏览器大小时触发resize事件,其他事件不会触发resize事件。当我执行下面的代码时

$(window).trigger("resize")

所有iframe都会触发resize事件,为什么?

0 个答案:

没有答案