<!DOCTYPE html> <html> <head> <script src="https://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var txt=""; txt+="Width of div: " + $("#div1").width() + "</br>"; txt+="Height of div: " + $("#div1").height() + "</br>"; txt+="innerWidth of div: " + $("#div1").innerWidth() + "</br>"; txt+="innerHeight of div: " + $("#div1").innerHeight() + "</br>" txt+="Outer width: " + $("#div1").outerWidth() + "</br>" txt+="Outter height: " + $("#div1").outerHeight() + "</br>"; txt+="Outer width: " + $("#div1").outerWidth(true) + "</br>" txt+="Outter height: " + $("#div1").outerHeight(true); $("#div1").html(txt); }); }); </script> </head> <body> <div></div> <br> <button>显示div尺寸</button> </body> </html>
运行结果:
感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具测试上述代码运行效果。
更多关于jQuery相关内容还可查看本站专题:《jQuery切换特效与技巧总结》、《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery拖拽特效与技巧总结》、《jQuery表格(table)操作技巧汇总》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结》