jQuery width() 方法

  • 定义和用法

    width() 方法设置或返回被选元素的宽度。
    当该方法用于返回宽度时, 则返回第一个匹配元素的宽度。
    当该方法用于设置宽度时,则设置所有匹配元素的宽度。
    如下面的图像所示,该方法不包含 padding、border 或 margin。
    外形尺寸图
  • 语法

    返回宽度:
    $(selector).width()
    设置宽度:
    $(selector).width(value)
    使用函数设置宽度:
    $(selector).width(function(index,currentwidth))
  • 参数描述

    参数 描述
    value 当设置宽度时是必需的。规定元素的宽度,单位为 px、em、pt 等。 默认单位是 px。
    function(index,currentwidth)
    可选。规定返回被选元素新宽度的函数。
    • index - 返回集合中元素的 index 位置。
    • currentwidth - 返回被选元素的当前宽度。
  • 实例

    下例演示了返回指定<div>元素的宽度和高度:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>欢迎来到蝴蝶教程</title>
    //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
    <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
    <script>
        $(document).ready(function () {
           $("button").click(function(){
              var txt = "";
              txt += "Width: " + $("#div1").width() + "<br/>";
              txt += "Height: " + $("#div1").height();
              $("#div1").html(txt);
          });
       });
    </script>
    </head>
    <body>
         <div id="div1" style="height:100px;width:300px;padding:10px;margin:3px;background-color:#ddd;">这是一个div。</div>
          <button>点击div显示尺寸</button>
    </body>
    </html>
    
    尝试一下
  • 相关方法