Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions 4-3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<!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;">&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</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" />&nbsp;&nbsp;
<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" />&nbsp;&nbsp;
<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" />&nbsp;&nbsp;
<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>