日期:2014-05-17 浏览次数:20792 次
if (document.getElementById('addjs') != null) {//如果存在id=addjs标签 document.body.removeChild(document.getElementById('addjs'));//从文档体中移除该标签 }
------解决方案--------------------
if (document.getElementById('addjs') != null) {//从你当前页面去找一个ID叫“addjs”的标签,判断是否存在,找到了就不为null,没找到就null
document.body.removeChild(document.getElementById('addjs'));//移除该标签
}
document.getElementById('addjs')方法是根据ID来查找该标签
还有种用名字来查找的document.getElementByName('addjs')
------解决方案--------------------
都对