jQuery技术

jquery outerWidth() outerHeight() 参数true(图文)

字号+ 作者:H5之家 来源:H5之家 2017-03-30 14:03 我要评论( )

jquery outerWidth() outerHeight() 参数true(图文)

在使用jquery获取元素的宽度和高度时我们通常使用outerWidth()方法,

下面介绍一下outerWidth(true)、outerHeight(true)的含义

jQuery outerWidth() 和 outerHeight() 方法

outerWidth() 方法返回元素的宽度(包括内边距和边框)。

outerHeight() 方法返回元素的高度(包括内边距和边框)。

outerWidth(true) 方法返回元素的宽度(包括内边距、边框和外边距)。

outerHeight(true) 方法返回元素的高度(包括内边距、边框和外边距)。

<!DOCTYPE html> <html> <head> <script type="text/javascript" src=""></script> </script> <script> $(document).ready(function(){ var txt=""; txt+="Width of div: " + $("#div1").width() + "</br>"; txt+="Height of div: " + $("#div1").height() + "</br>"; txt+="Outer width of div: " + $("#div1").outerWidth() + "</br>"; txt+="Outer height of div: " + $("#div1").outerHeight(); $("#div1").html(txt); txt=""; txt+="Width of div: " + $("#div2").width() + "</br>"; txt+="Height of div: " + $("#div2").height() + "</br>"; txt+="Outer width of div (margin included): " + $("#div2").outerWidth(true) + "</br>"; txt+="Outer height of div (margin included): " + $("#div2").outerHeight(true); $("#div2").html(txt); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div> <br> <div id="div2" style="height:100px;width:300px;padding:10px;margin:3px;border:1px solid blue;background-color:lightblue;"></div>

jquery outerWidth() outerHeight() 参数true

使用outerWidth(true)、outerHeight(true)会把margin外边框的大小也算到里面

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • JQuery插件的写法和规范

    JQuery插件的写法和规范

    2017-03-30 15:08

  • jQuery实现的简单悬浮层功能完整实例

    jQuery实现的简单悬浮层功能完整实例

    2017-03-29 18:04

  • jQuery的derferred使用方法

    jQuery的derferred使用方法

    2017-03-29 17:02

  • 使用 jQuery 在浏览器中处理 XML

    使用 jQuery 在浏览器中处理 XML

    2017-03-29 14:03

网友点评
=