fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ var txt=""; txt+="outerWidth() of div: " + $("div").outerWidth() + "</br>"; txt+="outerWidth(true) of div: " + $("div").outerWidth(true) + "</br>"; $("div").html(txt); }); }); </script> </head> <body> <div style="height:120px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div> <br> <button>显示div的外部宽度</button> <p>outerWidth() - 返回一个元素的外部宽度(包括内填充和边界)。</p> <p>outerWidth(true) - 返回一个元素的外部宽度(包括内填充、边界和外填充)。</p> </body> </html>
运行结果