jQuery获得document和window对象宽度和高度的方法教程
程序员文章站
2022-04-03 16:10:42
本文实例讲述了jquery获得document和window对象宽度和高度的方法。分享给大家供大家参考。具体如下:
<...
本文实例讲述了jquery获得document和window对象宽度和高度的方法。分享给大家供大家参考。具体如下:
<!doctype html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ var txt=""; txt+="document width/height: " + $(document).width(); txt+="x" + $(document).height() + "\n"; txt+="window width/height: " + $(window).width(); txt+="x" + $(window).height(); alert(txt); }); }); </script> </head> <body> <button>display dimensions of document and window</button> </body> </html>
上一篇: JavaScript开发教程之Jquery异步提交表单代码分享
下一篇: 深入了解c++数组与指针
推荐阅读
-
jquery获取div的高度和宽度(获取div实际宽高度的方法)
-
jquery获取div的高度和宽度(获取div实际宽高度的方法)
-
从jQuery的remove()和原生JS的removeChild()方法再观jQuery对象和DOM对象的关系(代码教程)
-
jQuery获得包含margin的outerWidth和outerHeight的方法教程
-
jQuery设置指定网页元素宽度和高度的方法教程
-
jQuery获得document和window对象宽度和高度的方法教程
-
js获得页面的高度和宽度的方法_javascript技巧
-
jQuery获得document和window对象宽度和高度的方法_jquery
-
js获得页面的高度和宽度的方法_javascript技巧
-
jQuery设置指定网页元素宽度和高度的方法_jquery