浅谈jQuery中height与width
jquery中有三个获取element高度的方法,分别是:height(),innerHeight(),outerHeght(bool);同样对应的有三个获取element宽度的方法:width(),innerHeight(),outerHeight(bool),这三个方法分别对应怎样的元素属性,如下图所示:
从上面的图可以了解到:height()方法对应顶部style设置的width属性;
innerHeight()对应width+padding-top+padding-bottom;
outerHeight()对应width+padding-top+padding-bottom+border-top+border-bottom;
另外看到下面outerHeight与outerWidth的值不一样是由于outerWidth(bool)方法参数被设置成true,
这时会加上margin-top和margin-bottom;
即:outerWidth = width+padding-top+padding-bottom+border-top+border-bottom+margin-top+margin-bottom;
来个简单的示例吧
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("#id200").width("300px"); }); }); </script> </head> <body> <div id="id100" style="background:yellow;height:100px;width:100px">HELLO</div> <div id="id200" style="background:yellow;height:100px;width:100px">W3SCHOOL</div> <button type="button">请点击这里</button> </body> </html>
以上所述就是本文的全部内容了,希望大家能够喜欢。
相关文章
EasyUI 中combotree 默认不能选择父节点的实现方法
下面小编就为大家带来一篇EasyUI 中combotree 默认不能选择父节点的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-11-11jquery.guide.js新版上线操作向导镂空提示jQuery插件(推荐)
这篇文章主要介绍了jquery.guide.js新版上线操作向导镂空提示jQuery插件(推荐),需要的朋友可以参考下2017-05-05轻松学习jQuery插件EasyUI EasyUI创建菜单与按钮
这篇文章主要帮助大家轻松学习jQuery插件EasyUI,重点是EasyUI创建菜单与按钮,按钮分为链接按钮、菜单按钮、分割按钮,对这方面感兴趣的小伙伴们可以参考一下2015-11-11
最新评论