没有removeAll的API,但也十分容易实现:

 

var lis = $("#yetai_tbody").find("tr");
$(lis).each(function () {
this.parentNode.removeChild(this);
});

 

 

while (node.hasChildNodes()) {
    node.removeChild(node.lastChild);
}    

相关文章: