jQuery中的.height()、innerHeight()跟.outerHeight()
jQuery中的.height()、.innerHeight()和.outerHeight()
height:高度
innerHeight:高度+补白
outerHeight:高度+补白+边框,参数为true时:高度+补白+边框+边距
<div style="width: 150px;height:20px;float:left;border: 2px solid red;margin: 10px;margin: 10px;padding: 10px;" id="test">jjjjj</div> alert($("#test").height()); //20px alert($("#test").innerHeight()); //40px alert($("#test").outerHeight()); //44px alert($("#test").outerHeight(true)); //64px