jQuery CSS 操作 - width() 方法

实例

设置 <p> 元素的宽度:

  1. $(".btn1").click(function(){
  2. $("p").width(200);
  3. });

定义和用法

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

返回宽度

返回第一个匹配元素的宽度。

如果不为该方法设置参数,则返回以像素计的匹配元素的宽度。

语法

  1. $(selector).width()

设置宽度

设置所有匹配元素的宽度。

语法

  1. $(selector).width(length)
参数 描述
length 可选。规定元素的宽度。 如果没有规定长度单位,则使用默认的 px 单位。

使用函数来设置宽度

使用函数来设置所有匹配元素的宽度。

语法

  1. $(selector).width(function(index,oldwidth))
参数 描述
function(index,oldwidth) 规定返回被选元素新宽度的函数。 - index - 可选。接受选择器的 index 位置 - oldvalue - 可选。接受选择器的当前值。

实例

获得文档和窗口元素的宽度

使用 width() 方法来获得 document 和 window 元素的当前宽度。

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/jquery/jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $(".btn1").click(function(){
  7. $("#span1").text($(window).width());
  8. $("#span2").text($(document).width());
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14. <p>窗口的宽度是 <span id="span1">unknown</span> px。</p>
  15. <p>文档的宽度是 <span id="span2">unknown</span> px。</p>
  16. <button class="btn1">获得宽度</button>
  17. <p>在本例中,窗口和文档的宽度是相同的,因为它们在 iframe 中显示。</p>
  18. </body>
  19. </html>

使用 em 和 % 值来设置宽度

使用指定的长度单位来设置元素的宽度。

  1. <html>
  2. <head>
  3. <script type="text/javascript" src="/jquery/jquery.js"></script>
  4. <script type="text/javascript">
  5. $(document).ready(function(){
  6. $(".btn1").click(function(){
  7. $("p").width("50%");
  8. });
  9. $(".btn2").click(function(){
  10. $("p").width("20em");
  11. });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <p style="background-color:yellow">This is a paragraph.</p>
  17. <button class="btn1">把宽度设置为 50%</button>
  18. <button class="btn2">把宽度设置为 20 em</button>
  19. </body>
  20. </html>