日期:2014-05-16 浏览次数:20334 次
<script src='http://code.jquery.com/jquery-1.8.3.js'></script>
<div><input type="checkbox" /></div>
<div><input type="checkbox" /></div>
<div><input type="checkbox" /></div>
<div><input type="checkbox" /></div>
<input type="button" value="删除" onclick="del()" />
<script>
function del() {
//ajax请求动态页删除的代码,在回调成功中执行下面列出的语句就行了,这里测试就直接删除了,省略了ajax逻辑代码
$('input:checked').parent().remove()
}
</script>
<html>
<head>
<script src="http://www.csdn.net/js/jquery-1.4.2.min.js"></script>
</head>
<body>
<div id="chs">
<li class=".checkbox" > <input type="checkbox" name="" value="1" />1</li>
<li class=".checkbox"><input type="checkbox" name="" value="2" />2</li>
<li class=".checkbox"><input type="checkbox" name="" value="3" />3</li>
</div>
<script type="text/javascript">
function delSelect(ids ){
var chs=$('#chs :checkbox'),
i=chs.length,ids=','+ids+',';
while(i--)
if( ids.indexOf(chs[i].value)!=-1 ) $(chs[i]).parent().remove();
}
alert('删除1,2');
delSelect( [1,2] );
</script>