歌剧中的getElementsByName,即等等

时间:2010-11-29 13:45:33

标签: javascript

这是我修复ie,ff,opera等中的compable getElementById的代码

    function getId(item) {  
        if( window.mmIsOpera ) return(document.getElementById(item));
        if (document.all) return(document.all[item]);
        if (document.getElementById) return(document.getElementById(item));
    return(false);
    }

我的问题是,ie,ff,opera等中的getElementsByName怎么样。

2 个答案:

答案 0 :(得分:2)

所有主流浏览器都支持getElementsByTagName:

http://www.quirksmode.org/dom/w3c_core.html

答案 1 :(得分:0)

我昨晚得到了解决方案...... 要从文本字段中获取值,只需在表单中添加一个atribut“name”即可。 喜欢 David Dorward 说:document.nameOfForm.nameOfTextfield.value