可以实现的,你自己的代码有问题吧。
是的直接在删除动作那再操作
全选里面错误:if(tr[i].checked)=>if(input.checked)
这个要看你用什么开发平台了,每个都不一样的,sunlime text 的话,你可以取在默认建里面 ctrl + f 取查找 if关键字,可以去找,有些可能会出现快捷键 冲突,那就要改快捷键了。
this 总是指向调用该方法的对象http://www.w3school.com.cn/js/pro_js_object_scope.asp
因为getElementsByTagName获得的是一个数组
<script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script> <script type="text/javascript"> $(function(){ //绑定点击删除按钮回调函数 $("#del").on('click',function(){ $("#table tr input").each(function(index,element){ console.log(index); console.log($(this).is(":checked")); if($(this).is(":checked")) { $(this).parent().parent().remove(); } }) }); }); </script>
if(input[0].checked)