浅谈javascript属性onresize_javascript技巧
程序员文章站
2022-04-11 16:05:24
...
浅谈javascript属性onresize
//获取屏幕宽度并动态赋值 var winWidth = 0; var winHeight = 0; function findDimensions() //函数:获取尺寸 { //获取窗口宽度 if (window.innerWidth) winWidth = window.innerWidth; else if ((document.body) && (document.body.clientWidth)) winWidth = document.body.clientWidth; //获取窗口高度 if (window.innerHeight) winHeight = window.innerHeight; else if ((document.body) && (document.body.clientHeight)) winHeight = document.body.clientHeight; //通过深入Document内部对body进行检测,获取窗口大小 if (document.documentElement && document.documentElement.clientHeight && document.documentElement.clientWidth) { winHeight = document.documentElement.clientHeight; winWidth = document.documentElement.clientWidth; } //结果输出至两个文本框 $("body").height(winHeight) $("body").width(winWidth) } findDimensions(); //调用函数,获取数值 window.onresize=findDimensions; //-->
只有我要对屏幕大小进行操作的时候才想起原来还有个对屏幕操作的属性
onresize 事件会在窗口或框架被调整大小时发生。
以上所述就是本文的全部内容了,希望大家能够喜欢。
上一篇: java语言难学吗
下一篇: prototype属性怎么用
推荐阅读
-
IE6/7中getAttribute获取href/src 属性(相对路径0值与其它浏览器不同_javascript技巧
-
网页运行时提示对象不支持abigimage属性或方法_javascript技巧
-
遍历DOM对象内的元素属性示例代码_javascript技巧
-
document.createElement("A")比较不错的属性_javascript技巧
-
让低版本浏览器支持input的placeholder属性(js方法)_javascript技巧
-
让低版本浏览器支持input的placeholder属性(js方法)_javascript技巧
-
浅谈JavaScript中指针和地址_javascript技巧
-
浅谈javascript中自定义模版_javascript技巧
-
浅谈JavaScript字符串与数组_javascript技巧
-
浅谈JavaScript中的属性:如何遍历属性