jquery 基本用法

$(':checkbox[name=child]').each(function(){
if($(this).attr('checked')){
$(this).closest('tr').remove();  删除checkbox所在的行
num++;
}
})

 

$(this).removeAttr('checked');//如果这里的this表示的是当前行,那么:$(this).find(':checkbox').removeAttr('checked')
第二个问题:
先移除,再复制,再追加:. $(this).remove().clone().appendTo("#t_one")

 

一个按钮调用另一个元素的事件

function  go——back(){

 $(".class").click();

}

你可能感兴趣的:(jquery)