js需要删除页面中某个元素

var m = document.getElementById("要移除的元素id");

m.parentNode.removeChild(m);

你可能感兴趣的:(js需要删除页面中某个元素)