HTML 中 select 选择

     function  selectValue(select,val) {
        
var  opt  =  select.options ;
                
for ( var  i = 0 ;i < opt.length;i ++ ) {
            
if ( opt[i].firstChild.nodeValue  ==  val) {
                opt[i].selected 
=   true ;
                
return  ; 
            }

        }

        
for ( var  i = 0 ;i < opt.length;i ++ ) {
            
if ( opt[i].value  ==  val) {
                opt[i].selected 
=   true ;
                
return  ; 
            }

        }


    }

    

你可能感兴趣的:(HTML 中 select 选择)