jQuery - width() 方法



描述

width() 方法獲取第一個匹配元素的當前計算畫素寬度。

語法

以下是使用此方法的簡單語法:

selector.width( )

此方法可以查詢視窗和文件的寬度,如下所示:

$(window).width();   // returns width of browser viewport
$(document).width(); // returns width of HTML document

引數

以下是此方法使用的所有引數的描述:

示例

以下是一個簡單的示例,展示了此方法的用法:

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://tutorialspoint.tw/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
			
            $("div").click(function () {
               var color = $(this).css("background-color");
               var width = $(this).height();
               $("#result").html("That div is <span>" +color+ "</span>.");
               $("#result").css({'color': color, 'background-color':'gray'});
               $("#result").width( width );
            });
				
         });
      </script>
		
      <style>
         div { width:60px; height:60px; margin:5px; float:left; }
      </style>
   </head>
	
   <body>
      <p>Click on any square:</p>
      <span id = "result"> </span>
		
      <div style = "background-color:blue; height:50px;"></div>
      <div style = "background-color:pink;height:30px;"></div>
      <div style = "background-color:#123456;height:100px;"></div>
      <div style = "background-color:#f11; height:75px;"></div>
   </body>
</html>

這將產生以下結果:

jquery-css.htm
廣告
© . All rights reserved.