jQuery CSS 操作 - height() 方法
实例
设置 <p> 元素的高度:
- $(".btn1").click(function(){
$("p").height(50);
- });
定义和用法
height() 方法返回或设置匹配元素的高度。
返回高度
返回第一个匹配元素的高度。
如果不为该方法设置参数,则返回以像素计的匹配元素的高度。
语法
- $(selector).height()
设置高度
设置所有匹配元素的高度。
语法
- $(selector).height(length)
参数 | 描述 |
---|---|
length | 可选。规定元素的高度。 如果没有规定长度单位,则使用默认的 px 单位。 |
使用函数来设置高度
使用函数来设置所有匹配元素的高度。
语法
- $(selector).height(function(index,oldheight))
参数 | 描述 |
---|---|
function(index,oldheight) | 规定返回被选元素新高度的函数。 - index - 可选。接受选择器的 index 位置 - oldvalue - 可选。接受选择器的当前值。 |
实例
获得文档和窗口元素的高度
使用 height() 方法来获得 document 和 window 元素的当前高度。
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("#span1").text($(window).height());
$("#span2").text($(document).height());
});
});
</script>
</head>
<body>
<p>窗口的高度是 <span id="span1">unknown</span> px。</p>
<p>文档的高度是 <span id="span2">unknown</span> px。</p>
<button class="btn1">获得高度</button>
<p>在本例中,窗口和文档的高度是相同的,因为它们在 iframe 中显示。</p>
</body>
</html>
使用 em 和 % 值来设置高度
使用指定的长度单位来设置元素的高度。
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".btn1").click(function(){
$("p").height("50%");
});
$(".btn2").click(function(){
$("p").height("20em");
});
});
</script>
</head>
<body>
<p style="background-color:yellow">This is a paragraph.</p>
<button class="btn1">把高度设置为 50%</button>
<button class="btn2">把高度设置为 20 em</button>
</body>
</html>