js问题document.getElementById) ? document.getElementById(id): document.all[id]
1个回答
展开全部
document.getElementById这个应该晓得是根据id抓取Html对象
第二个document.all[id]
document代表整个网页文档,这里使用的是它的all[]属性,该属性为html文档所包含的所有元素的集合,这里加上了参数id,那么它将得到该html文档中id号为参数"id"内容的元素集合。
第二个document.all[id]
document代表整个网页文档,这里使用的是它的all[]属性,该属性为html文档所包含的所有元素的集合,这里加上了参数id,那么它将得到该html文档中id号为参数"id"内容的元素集合。
追问
document.getElementById没有给id怎么得到元素
追答
document.getElementById?这个的意思是是否存在这个方法
就相当于
if(document.getElementById)
{
document.getElementById(id);
}else{
document.all[id];
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询