实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
AخA
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
  <style>
5
  p { color:blue; margin:20px; }
6
  span { color:red; }
7
  </style>
8
  <script src="https://code.jquery.com/jquery-latest.js"></script>
9
</head>
10
<body>
11
  <p>
12
  </p>
13
<script>
14
$("p").html("This frame uses the W3C box model: <span>" +
15
            jQuery.support.boxModel + "</span>");
16
</script>
17
 
18
</body>
19
</html>