下拉点击跳到指定链接(类同友情链接)

 html代码

<select onchange="window.location=this.value;">
          <option value="#">-请选择-</option>
          <option value="http://www.baidu.com">BAIDU</option>
          <option value="http://www.google.cn">GOOGLE</option>
          <option value="http://www.qq.com">QQ</option>
</select>

或改成onchange="javascript:window.open(this.value);"跳转到新窗口
原文地址:https://www.cnblogs.com/harxingxing/p/3896480.html