本文介绍了触发onResize受到跨浏览器兼容的方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从后面我的C#code触发事件的onResize。我想,这可以
I would like to trigger the onresize event from my C# code behind. I think this can be done with
Page.clientScript.RegisterScriptBlock(this.getType(), "id", "javascript code");
我曾尝试element.onresize(),但它似乎在Firefox工作。什么是触发类似于以下的jQuery?
I have tried element.onresize() but it doesnt seem to work in firefox. What is the correct way to trigger an onresize event similar to the following jQuery?
$("body").trigger("resize");
使用jQuery本身不是一个选项。
Using jQuery itself isn't an option.
推荐答案
这应该做的伎俩,的,不知道这是否适用于IE6,怪癖模式仍然对这个东西没有信息:
This should do the trick, DOM Level 2, no idea whether this works in IE6, quirks mode still has no information on this stuff:
if (document.createEvent) {
var e = document.createEvent('HTMLEvents');
e.initEvent('resize', true, false);
document.body.dispatchEvent(e);
} else if (document.createEventObject) {
document.body.fireEvent('onresize');
}
在FF,Chrome和Opera测试。
Tested in FF, Chrome and Opera.
这篇关于触发onResize受到跨浏览器兼容的方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!