当前位置: 代码迷 >> Web前端 >> jQuery 尺度 元素
  详细解决方案

jQuery 尺度 元素

热度:361   发布时间:2012-06-30 17:20:12.0
jQuery 尺寸 元素



1、margin : 页边的空白

2、border?: 边界

3、padding:填料

4、element:要素,元素。

5、outerHeight(true)

6、outerHeight

7、innerHerght

8、outWidth

9、outerWidth(true)

10、outerwidth

11、width()

12、height()

?

?

?

例子:

?

<!DOCTYPE html>
<html>
<head>
  <style>p { margin:10px;padding:5px;border:2px solid #666; } </style>
  <script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
  <p>Hello</p><p></p>
<script>var p = $("p:first");
$("p:last").text( "outerHeight:" + p.outerHeight() + " , outerHeight(true):" + p.outerHeight(true) );</script>

</body>
</html>

?

?

  相关解决方案