获取宽度为百分比(%)的对象具体宽度(px)
1
2
3
4
5
6
7
8
9
<div id="panel">
<div id ="a" style="width:66%"></div>
</div>
<script type="text/javascript">
$(document).ready(function () {
alert($("#a").innerWidth());
});
</script>
获取元素自身的HTML
1
$("#panel").prop("outerHTML");
复制元素
1
$("#panel").clone()
关于元素包裹的演示
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>演示文档</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style>
li{background: #ccc;margin-top: 25px;width: 150px;}
.orange{background: orange}
.red{background: red}
.green{background: green}
.ccc{background: #ccc;}
#div1{width: 200px;height: 25px;}
</style>
</head>
<body>
<div id="div1" class="ccc"></div>
<ol>
<li class="orange">列表项1</li>
<li class="red"><i>列表项2</i></li>
<li class="green">列表项3</li>
</ol>
<input id="btn1" type="button" value='wrap'>
<input id="btn2" type="button" value='wrapAll'>
<input id="btn3" type="button" value='unwrap'>
<input id="btn4" type="button" value='wrapInner'>
<script type="text/javascript">
$(function () {
$('#btn1').click(function () {
// 在div元素中包裹每个i元素
$('li').wrap($('#div1'));
})
$('#btn2').click(function () {
// 在div元素中包裹所有i元素
$('li').wrapAll($('#div1'));
})
$('#btn3').click(function () {
// 移除所有i元素的父元素
$('li').unwrap();
})
$('#btn4').click(function () {
// 在每个i元素的内容上包裹div元素
$('li').wrapInner($('#div1'));
})
})
</script>
</body>
</html>