-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4-3.html
More file actions
89 lines (74 loc) · 2.51 KB
/
4-3.html
File metadata and controls
89 lines (74 loc) · 2.51 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>全选效果</title>
<script>
function check(){
var oinput = document.getElementsByName("product");
for(var i=0;i<oinput.length;i++){
if(document.getElementById("all").checked == true){
oinput[i].checked = true;
}else{
oinput[i].checked = false;
}
}
}
</script>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" class="bg" align="center">
<tr>
<td style="height:40px;"> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><input id="all" type="checkbox" value="全选" onclick="check()"/>全选</td>
<td>商品图片</td>
<td>商品名称/出售者/联系方式</td>
<td>价格</td>
</tr>
<tr>
<td colspan="4"><hr style="border:1px #cccccc dashed" /></td>
</tr>
<tr>
<td><input name="product" type="checkbox" value="1"></td>
<td><img src="images/list0.jpg" alt="alt"></td>
<td>
杜比环绕,家庭影院必备,超真实享受<br/>
出售者:ling112233<br/>
<img src="images/online_pic.gif" alt="alt" />
<img src="images/list_tool_fav1.gif" alt = "alt" />收藏
</td>
<td>一口价<br/>2833.0</td>
</tr>
<tr>
<td><input name="product" type="checkbox" value="2"></td>
<td><img src="images/list1.jpg" alt="alt"></td>
<td>
NVAID 9999GT 512MB 256bit极品显卡,不容错过<br/>
出售者:aipianjijd110<br/>
<img src="images/online_pic.gif" alt="alt" />
<img src="images/list_tool_fav1.gif" alt = "alt" />收藏
</td>
<td>一口价<br/>6464.0</td>
</tr>
<tr>
<td><input name="product" type="checkbox" value="2"></td>
<td><img src="images/list2.jpg" alt="alt"></td>
<td>
精品热卖:高清晰,30寸等离子电视<br/>
出售者:阳光的挣扎<br/>
<img src="images/online_pic.gif" alt="alt" />
<img src="images/list_tool_fav1.gif" alt = "alt" />收藏
</td>
<td>一口价<br/>18888.0</td>
</tr>
<tr>
<td colspan="4"><hr style="border:1px #cccccc dashed" /> </td>
</tr>
</table>
</body>
</html>