jQuery.boxModel
jQuery.boxModel 返回: Boolean
描述: 在jQuery 1.3中不建议使用。当前页面中浏览器是否使用标准盒模型渲染页面。 建议使用 jQuery.support.boxModel 代替。W3C CSS 盒模型。
version added: 1.0jQuery.boxModel
Examples:
Example: 返回iframe的盒模型。
<!DOCTYPE html>
<html>
<head>
<style>
p { color:blue; margin:20px; }
span { color:red; }
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<p>
</p>
<script>
$("p").html("The box model for this iframe is: <span>" +
jQuery.boxModel + "</span>");
</script>
</body>
</html>
Demo:
Example: 在 Internet Explorer 怪癖模式(QuirksMode)中返回 False。
$.boxModel
Result:
false