height()是 jQuery 中的一个内置方法,用于检查元素的高度,但不会检查元素的填充、边框和边距。
句法:
$("param").height()
参数:此函数不接受任何参数。
返回值:返回所选元素的高度。
代码#1:
Click on the button and check the height of the
element(excluding padding).
输出:
在点击“点击我”按钮之前——
点击“点击我”按钮后——
jQuery还包括innerHeight()方法,即,它用于检查元素的内部高度,包括填充。
句法:
$("param").innerHeight()
参数:该函数不接受任何参数。
返回值:返回被选元素的内部高度。
代码#2:
Click on the button and check the innerHeight of
an element(includes padding).
输出:
在点击“点击我”按钮之前——
点击“点击我”按钮后——