📜  jQuery height()

📅  最后修改于: 2020-11-26 01:22:04             🧑  作者: Mango

jQuery height()

jQuery height()方法用于返回第一个元素的当前计算高度,或设置每个匹配元素的高度。换句话说,可以说height()方法用于两个目的:

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

设置高度:使用此方法设置高度时,它将设置所有匹配元素的高度。

此方法是一个非常常见的jQuery维度。

before()和insertBefore()这两个方法均用于执行相同的任务。它们之间的主要区别在于语法以及内容和目标的位置。

句法:

要返回高度:

$(selector).height() 

设置高度:

$(selector).height(value)

要使用函数设置高度:

$(selector).height(function(index,currentheight))

jQuery height()方法的参数

Parameter Description
Value This is a mandatory parameter. It specifies the height in px, em, pt, etc. its defauly unit is px.
Function (index, currentHeight) This is an optional parameter. This is used to specify a function that returns the new height of the selected element.
  • Index:It provides the index position of the element in the set.
  • currentHeight: It provides the current height of the selected element.

jQuery height()方法的示例

让我们以一个示例来演示jQuery height()方法。

返回高度:








Hello Guys!
This is javatpoint.com

jQuery height()示例2

设置高度:

本示例将说明如何设置特定的高度。




  
  height demo