开发者

window.open(url, name, features) under IE

开发者 https://www.devze.com 2023-02-24 04:52 出处:网络
This is regarding JavaScript method window.open(url, name, features). If the url is relative or under the same domain of the current page, the parameter features will be ignored by IE.

This is regarding JavaScript method window.open(url, name, features). If the url is relative or under the same domain of the current page, the parameter features will be ignored by IE.

Example: http://statcomp.ats.ucla.edu/WebTools/JavaTools/popup.htm.

This happens in IE8/9 at least. Why? Is there any workaround?

Thanks a开发者_JAVA技巧 lot, Xiao


The only time you use px for a client side web thing is in CSS.

That should be: height=400,width=400.


In your second example, the browser does respect the size, but the other properties are ignored as they don't have any value.

Use a value of 1, 0, yes or no for the properties:

width=480,height=200,scrollbars=1,dependent=1,resizable=1
0

精彩评论

暂无评论...
验证码 换一张
取 消