jQuery.boxModel


jQuery.boxModel返回: Booleanversion deprecated: 1.3

描述: 在jQuery 1.3中不建议使用(查看jQuery.support)。当前页面中浏览器是否使用标准盒模型渲染页面。 建议使用 jQuery.support.boxModel 代替。W3C CSS Box Model

  • 添加的版本: 1.0jQuery.boxModel

例子:

Example: 返回iframe的盒模型。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<style>
p { color:blue; margin:20px; }
span { color:red; }
</style>
<script src="https://code.jquery.com/jquery-latest.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。

1
$.boxModel

Result:

1
false