让getElementsByName适应IE和firefox的方法
2018-10-15 18:06
阅读:715
w3c规范中getElementsByName是按着name属性进行检索的,而MS的IE却是按着id来检索。导致不能得到应该得到的Elements,为适应浏览器,我们可以做一下调整:
一、把需要用getElementsByName的name都加上id,且id和name相同。
二、用一个函数来适应浏览器,代码如下:
复制代码 代码如下:
getElementsByName:function(name){
varreturns=document.getElementsByName(name);
if(returns.length>0)returnreturns;
returns=newArray();
vare=document.getElementsByTagName(td);
for(i=0;i<e.length;i++){
if(e[i].getAttribute(name)==name){
returns[returns.length]=e[i];
}
}
returnreturns;
}
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:让getElementsByName适应IE和firefox的方法
文章链接:http://soscw.com/index.php/essay/19068.html
文章标题:让getElementsByName适应IE和firefox的方法
文章链接:http://soscw.com/index.php/essay/19068.html
评论
亲,登录后才可以留言!