首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

javascribe之document的一些事,该怎么解决

2012-04-21 
javascribe之document的一些事if (document.getElementById(addjs) ! null) {document.body.removeChil

javascribe之document的一些事
if (document.getElementById('addjs') != null) {
document.body.removeChild(document.getElementById('addjs'));
}
本人菜鸟,向大家求教一下这是什么意思?

[解决办法]
if (document.getElementById('addjs') != null) {//如果存在该元素
document.body.removeChild(document.getElementById('addjs'));//删掉该元素
}

[解决办法]

JScript code
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')
[解决办法]
都对
探讨
JScript code

if (document.getElementById('addjs') != null) {//如果存在id=addjs标签
document.body.removeChild(document.getElementById('addjs'));//从文档体中移除该标签
}

热点排行