jQuery获得document和window对象宽度和高度的方法
作者:bea
本文实例讲述了jQuery获得document和window对象宽度和高度的方法。分享给大家供大家参考。具体如下: <!DOCTYPE html><html><head><script src="js/jquery.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){ var txt=
本文实例讲述了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() + "
";
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获取标签文本内容和html内容的方法
- Node.js 去掉种子(torrent)文件里的邪恶信息
- jQuery使用attr()方法同时设置多个属性值用法实例
- jQuery使用prepend()方法在元素前添加内容用法实例
- jQuery使用append在html元素后同时添加多项内容的方法
- jQuery使用before()和after()在元素前后添加内容的方法
- jQuery使用after()方法在元素后面添加多项内容的方法
- jQuery使用empty()方法删除元素及其所有子元素的方法
- jquery使用remove()方法删除指定class子元素
- jQuery使用removeClass方法删除元素指定Class的方法
- jQuery给多个不同元素添加class样式的方法
- Js实现自定义右键行为
- jQuery使用addClass()方法给元素添加多个class样式
- Jquery异步提交表单代码分享
- jQuery使用toggleClass方法动态添加删除Class样式的方法
- jQuery使用CSS()方法给指定元素同时设置多个样式
- 12306验证码破解思路分享
- nodejs开发微博实例
- jQuery获得包含margin的outerWidth和outerHeight的方法