开发者

add scrollbar to popup window in IE after opening window

开发者 https://www.devze.com 2023-03-06 17:41 出处:网络
i want to add scrollbar to popup window after opening it. In FireFox there is a property \'window.scrollbars\', but IE doesn\'t have such property,

i want to add scrollbar to popup window after opening it. In FireFox there is a property 'window.scrollbars', but IE doesn't have such property, how can i add scrollbar in IE 开发者_开发百科using javascript? Thanks.


Use css overflow:scroll; property.

To access it by JavaScript, use:

document.body.style.overflow = 'scroll';
0

精彩评论

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