1

あなたの助けが必要です。

関数を認識するために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:

4

1 に答える 1