<!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=gb2312" />
<title>无标题文档</title>
<script src="jquery-1.4.2.js" type="text/javascript" /></script>
<script type="text/javascript">
$(function(){
$("#headchekbox").click(function(){
$("input[type=checkbox]").attr("checked",$("#headchekbox").attr("checked"));
});
$("#btn").click(function(){
if(confirm("您确认删除吗?")){
$(":checked").parent().parent().remove();
}
});
$("#up").click(function(){
var tr1=$(this).parent().parent().clone();
$(this).parent().parent().remove();
tr1.prependTo("table");
$(":checked").parent().parent().remove();
});
});
</script>
</head>
<body>
<button id="btn">delAll</button>
<table width="200" border="1">
<tr>
<td><input type="checkbox" id="headchekbox" /></td>
<td> </td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td><input type="button" id="up" value="上移"/></td>
</tr>
<tr>
<td><input type="checkbox" /></td>
<td> </td>
</tr>
</table>
</body>
</html>
1513

被折叠的 条评论
为什么被折叠?



