没有removeAll的API,但也十分容易实现:
var lis = $("#yetai_tbody").find("tr");
$(lis).each(function () {
this.parentNode.removeChild(this);
});
while (node.hasChildNodes()) {
node.removeChild(node.lastChild);
}
2023-07-31 15:02:04
没有removeAll的API,但也十分容易实现:
var lis = $("#yetai_tbody").find("tr");
$(lis).each(function () {
this.parentNode.removeChild(this);
});
while (node.hasChildNodes()) {
node.removeChild(node.lastChild);
}