当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery width()用法及代码示例


jQuery width() 方法用于返回或设置匹配元素的宽度。

返回宽度:当使用此方法返回宽度时,它返回第一个匹配元素的宽度。

设置宽度:当使用此方法设置宽度时,它会为每个匹配的元素设置宽度。

此方法是 jQuery 维度之一。

jQuery 维度列表:

  • width()
  • height()
  • innerWidth()
  • innerHeight()
  • outerWidth()
  • outerHeight()

用法

返回宽度:

$(selector).width()

设置宽度:

$(selector).width(value)

使用函数设置宽度:

$(selector).width(function(index,currentwidth))

jQuery width() 方法的参数

参数 描述
Value 它是一个强制性参数。用于设置宽度。它以px、em、pt等为单位指定宽度。jQuery width()方法的默认值为px。
Function(index, currentwidth) 它是一个可选参数。它指定了一个函数,用于提供所选元素的新宽度。
  • Index:它提供了元素在集合中的索引位置。
  • currentwidth:它提供所选元素的当前宽度。

jQuery width() 方法示例

下面通过一个例子来演示jQuery width()方法的效果。

返回宽度:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        alert("Width of div:" + $("div").width());
    });
});
</script>
</head>
<body>
<div style="height:100px;width:200px;padding:10px;margin:3px;border:1px solid blue;background-color:lightpink;"></div><br>
<button>Execute the jQuery width() method to return width</button>
</body>
</html>

jQuery width() 示例 2

设置宽度:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>width demo</title>
  <style>
  div {
    width:100px;
    height:80px;
    float:left;
    margin:5px;
    background:orange;
    cursor:pointer;
  }
  .mod {
    background:green;
    cursor:default;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div>E</div>
<script>
var modWidth = 70;
$( "div" ).one( "click", function() {
  $( this ).width( modWidth ).addClass( "mod" );
  modWidth -= 10;
});
</script>
</body>
</html>




相关用法


注:本文由纯净天空筛选整理自 jQuery width()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。