jquery如何实现在加载完iframe的内容后再进行操作
时间:2021-03-15 09:52:01|栏目:jquery|点击: 次
为iframe添加onload事件
ie使用attachEvent("onload",function(){})
firefox、chrome使用addEventListener("onload",function(){}),或者直接使用onload=function(){}
注:在firefox、chrome下 iframe.attachEvent返回undefined,可被翻译成false,用此可以解决和ie下绑定onload事件写法不同的缺陷。
ie使用attachEvent("onload",function(){})
firefox、chrome使用addEventListener("onload",function(){}),或者直接使用onload=function(){}
注:在firefox、chrome下 iframe.attachEvent返回undefined,可被翻译成false,用此可以解决和ie下绑定onload事件写法不同的缺陷。