jQuery获得document和window对象宽度和高度的方法
时间:2021-07-17 08:09:39|栏目:jquery|点击: 次
本文实例讲述了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>
希望本文所述对大家的jQuery程序设计有所帮助。
栏 目:jquery
下一篇:jQuery创建折叠式菜单
本文标题:jQuery获得document和window对象宽度和高度的方法
本文地址:http://www.codeinn.net/misctech/158290.html