jQuery innerHeight() 方法用于返回第一个匹配元素的内部高度。它包括填充但不包括边框和边距。
在上图中,您可以看到innerHeight() 方法包含padding 但不包含border 和margin。
用法:
$(selector).innerHeight()
jQuery innerHeight() 方法示例
下面通过一个例子来演示jQuery innerHeight()方法的效果。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert("Inner height of the div is:" + $("div").innerHeight());
});
});
</script>
</head>
<body>
<div style="height:100px;width:500px;padding:10px;margin:3px;border:1px solid blue;background-color:lightpink;"></div><br>
<button>Click here to get the inner height of the div</button>
</body>
</html>
jQuery innerHeight() 示例 2
下面通过一个例子来演示如何改变每个div的内部高度。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>innerHeight demo</title>
<style>
div {
width:60px;
padding:10px;
height:100px;
float:left;
margin:5px;
background:orange;
cursor:pointer;
}
.mod {
background:green;
cursor:default;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div>E</div>
<script>
var modHeight = 80;
$( "div" ).one( "click", function() {
$( this ).innerHeight( modHeight ).addClass( "mod" );
modHeight -= 8;
});
</script>
</body>
</html>
相关用法
- JQuery insertBefore()用法及代码示例
- JQuery index()用法及代码示例
- JQuery inArray()用法及代码示例
- JQuery insertAfter()用法及代码示例
- JQuery isPlainObject()用法及代码示例
- JQuery isXMLDoc()用法及代码示例
- JQuery isWindow()用法及代码示例
- JQuery isFunction()用法及代码示例
- JQuery is()用法及代码示例
- JQuery isArray()用法及代码示例
- JQuery isEmptyObject()用法及代码示例
- JQuery isNumeric()用法及代码示例
- JQuery ajaxError()用法及代码示例
- JQuery each()用法及代码示例
- JQuery removeProp()用法及代码示例
- JQuery event.isDefaultPrevented()用法及代码示例
- JQuery trigger()用法及代码示例
- JQuery data()用法及代码示例
- JQuery first()用法及代码示例
注:本文由纯净天空筛选整理自 jQuery innerHeight()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。