首页 > div自己移除自己/移除div下面的所有子元素

div自己移除自己/移除div下面的所有子元素

let remove = {/*div自己移除自己*/myself: function (sel) {sel = typeof sel === "string" ? document.querySelector(sel) : sel;sel && sel["parentNode"] && sel.parentNode.removeChild(sel);},/*移除div下面的所有子元素*/allChild: function (sel) {sel = typeof sel === "string" ? document.querySelector(sel) : sel;while (sel.hasChildNodes()) {sel.removeChild(sel.firstChild);}}};

更多相关:

  • 2014年9月3日 11:36:10 转载的: http://blog.sina.com.cn/s/blog_755168af0100vsik.html typeof用法 typeof的运算数未定义,返回的就是 "undefined". 运算数为数字 typeof(x) = "number" 字符串 typeof(x) = "stri...