Jquery-css-width

提供:Dev Guides
移動先:案内検索

jQuery-width()メソッド

説明

  • width()*メソッドは、最初に一致した要素の現在の計算されたピクセル幅を取得します。

構文

このメソッドを使用するための簡単な構文は次のとおりです-

selector.width( )

この方法は、次のようにウィンドウとドキュメントの幅を見つけることができます-

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

パラメーター

これは、この方法で使用されるすべてのパラメータの説明です-

  • NA

以下は、このメソッドの使用方法を示す簡単な例です-

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript"
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.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")l("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>

これにより、次の結果が生成されます–