<select onchange='if(this.value!="") window.open(this.value)' size="1" name="select">

解决方案 »

  1.   

    <select onchange='if(this.options[this.selectedIndex].value!="") window.open(this.options[this.selectedIndex].value)' size="1" name="select">
      

  2.   

    to whnnet(赚钱攒嫁妆):还是不行:(
      

  3.   

    <select onChange="if(this.value!='') {window.open(this.value)}" size="1" name="select">
    如何还不行,就不是这的问题了
      

  4.   

    直接写成这样都不行
    <select onchange="window.open('page.html') " size="1" name="select">似乎是window.open函数不能运行
      

  5.   

    <select onchange='if(this.options[this.selectedIndex].value!="") window.location=this.options[this.selectedIndex].value' size="1" name="select">