document.getelementsbyClassName('select wrapper')不起作用

时间:2013-07-16 18:56:37

标签: javascript dom internet-explorer-7

我需要你的帮助。

我需要能够为IE7提供支持以识别函数document.getElementbyClassName('select_wrapper')

这样它可以与以下编码同步:

var y = document.getElementsByTagName('SELECT');

    for (var i = 0; i < y.length; i++) {

            y[i].onblur = function() {
                this.style.backgroundColor = '#FFFFFF'
                //document.getElementById('select_wrapper').style.backgroundColor = 'FFFFFF'
                getElementsByClassName('select_wrapper').style.backgroundColor = 'FFFFFF'
            }

            y[i].onfocusin = function() {
                this.style.backgroundColor = '#FFFFC4'
                //document.getElementById('select_wrapper').style.backgroundColor = 'FFFFC4'
                getElementsByClassName('select_wrapper').style.backgroundColor = '#FFFFC4'
            }
    }

HTML:

1 个答案:

答案 0 :(得分:-1)

使用jQuery(http://jquery.com)。是跨浏览器而且简单。