欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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>