当我打开一个带有selectbox
例如站点 x 的新站点时,选择了 x 选项,但是当我通过单击左上角的箭头返回时,我返回到站点 y,但仍然选择了选项 x。
谁能帮我?
<nav id="navigation" class="navigation">
<a href="index_V1.html">Home</a>
<select id="Menu">
<option disabled selected hidden> # </option>
<option href="#">#1</option>
<option href="#">#2</option>
<option href="#">#3</option>
<option href="#">#4</option>
</select>
<script>
document.getElementById('Menu').onchange = function() {
window.location.href =
this.children[this.selectedIndex].getAttribute('href');
}
</script>
我应该在脚本中添加什么以避免该问题_
谢谢