gpt4 book ai didi

javascript - HTML 选择组合框项时打开 html 文件

转载 作者:行者123 更新时间:2023-11-28 08:09:44 25 4
gpt4 key购买 nike

我的网站上有这个组合框,我想要它,所以在选择英语选项后,它将打开一个名为“index-eng.html”的 html 文件,在选择西类牙语选项后,它将打开一个名为“index-eng.html”的 html 文件“index-span.html”。

我该怎么做?这是我尝试过的代码。

<option class="level-0" value="1"><a href="index-eng.html">English Inglés</a></option>
<option class="level-1" value="2"><a href="index-span.html">Spanish Español</a></option>

最佳答案

向选择添加 onchange 事件。

<script>
function redirect()
{
window.location=document.getElementById('selectName').value;
}
</script>
<select id="selectName" onchange="redirect()">
<option value="index-eng.html">English</option>
<option value="index-span.html">Spanish</option>
</select>

关于javascript - HTML 选择组合框项时打开 html 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24402822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com