gpt4 book ai didi

php - 使用 HTML 下拉菜单选择重定向

转载 作者:行者123 更新时间:2023-12-02 18:25:12 26 4
gpt4 key购买 nike

我有一个简单的 HTML 下拉选择框。

我希望其功能为“一旦选择某些内容”>页面就会重定向到自定义 URL。

下面是我的标记。

<fieldset id="size"><legend>Product Options</legend>
<div class="wpsc_variation_forms">
<table>
<tr><td class="col1"><label for="variation_select_48_5">Choose Size:</label></td>
<td class="col2"><select class="wpsc_select_variation" name="variation[5]" id="variation_select_48_5">
<option value="0" >-- Please Select --</option>
<option value="8" >Large</option>
<option value="7" >Medium</option>
<option value="6" >Small</option>
</select></td></tr>
</table>
</div><!--close wpsc_variation_forms-->
</fieldset>

我发现了一个类似的问题;但给出的解决方案似乎有点笨拙。

SELECT Dropdown that redirects without Javascript

最佳答案

使用 jQuery:

$(function() {
$('#variation_select_48_5').change(function() {
document.location = 'http://customurl.abc';
});
});

关于php - 使用 HTML 下拉菜单选择重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18453282/

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