返回值:BooleanjQuery.boxModel
在 jQuery 1.3 中不再建议使用。(详见 jQuery.support)。判断当前页面在用户浏览器中是否使用 W3C CSS Box Model 进行渲染。
-
1.0 新增jQuery.boxModel
示例:
返回 iframe 的 box model(盒模型)状态。
<!DOCTYPE html>
<html>
<head>
<style>
p { color:blue; margin:20px; }
span { color:red; }
</style>
<script src="jquery.min.js"></script>
</head>
<body>
<p>
</p>
<script>
$("p").html("The box model for this iframe is: <span>" +
jQuery.boxModel + "</span>");
</script>
</body>
</html>
演示:
示例:
如果页面运行在 Internet Explorer 的 Quirks 模式下,则返回 false。
jQuery 代码:
$.boxModel
结果:
false