jQuery—一些常见方法width(),innerWidth(),outerWidth()

Posted 漫思

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery—一些常见方法width(),innerWidth(),outerWidth()相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script src="../../jq-practice/jq/jquery-2.2.1.min.js"></script>
    <script>
        $(function(){
            alert($(‘div‘).width());          //width
            alert($(‘div‘).innerWidth());      //width+padding
            alert($(‘div‘).outerWidth());      //width+padding+border
            alert($(‘div‘).outerWidth(true));     //width+padding+border+margin
            
        });
    </script>
</head>
<body>
<div style="width: 100px; height: 100px; padding: 10px; border: 4px solid red; margin: 5px; background: blue;" ></div>

</body>
</html>

 

以上是关于jQuery—一些常见方法width(),innerWidth(),outerWidth()的主要内容,如果未能解决你的问题,请参考以下文章

处理滚动条和 jquery .width() 方法

INN实现深入理解

08-jQuery的位置信息

jQuery的位置信息

08-jQuery的位置信息

jquery.width 在图像上返回 0