gpt4 book ai didi

javascript - jQuery 选择框根据 url 选择选项

转载 作者:行者123 更新时间:2023-11-30 13:28:20 27 4
gpt4 key购买 nike

我有一个选择框,如下所示。我如何根据 url 的最后一部分将选项标记为已选中。例如:http://domain.com/index/one .网址的最后一部分是一个,所以我想选择选项一。

<select>
<option id="one">One</option>
<option id="two">Two</option>
<option id="three">Three</option>
</select>

我正在寻找 jQuery 或 Javascript 解决方案。

最佳答案

我认为这应该可以,假设 URL 具有您提到的最后一部分(您问题中的“一个”)

$('#selectid').val(window.location.href.substring(
window.location.href.lastIndexOf('/')+1))

关于javascript - jQuery 选择框根据 url 选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7705618/

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