jQuery - height( val ) 方法



描述

height( val ) 方法设置每个匹配元素的 CSS 高度。

语法

以下是使用此方法的简单语法:

selector.height( val )

参数

以下是此方法使用所有参数的描述:

  • val − 这是元素的高度。如果未指定显式单位(如“em”或“%”),则将“px”附加到值。

示例

以下是一个简单的示例,展示了此方法的用法:

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://tutorialspoint.com/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 height = $(this).height();
               
               $("#result").html("That div is <span>" +color+ "</span>.");
               $("#result").css({'color': color, 'background-color':'gray'});
               $("#result").height( height );
            });
				
         });
      </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.