链接错误有什么问题?

时间:2018-01-21 13:08:27

标签: html css

为什么以下链接在Mozilla Firefox中有效,但不能在Google Chrome中使用?我的代码中的任何问题以及如何解决它?

<select>
 <option onclick="window.open('https://www.google.com/');"> Example1</option>
 <option onclick="window.open('https://www.google.com/');"> Example2 </option>
 <option onclick="window.open('https://www.google.com/'); " >Example3</option>
</select>

1 个答案:

答案 0 :(得分:0)

这只有在保存在.html文件中才有效。不在某些在线编辑器上

<select onchange="this.options[this.selectedIndex].value && (window.open( this.options[this.selectedIndex].value));">
<option value="">Select...</option>
<option value="http://google.com">Google</option>
<option value="http://yahoo.com">Yahoo</option>