使用HTML下拉列表重定向选择

时间:2013-08-26 21:26:07

标签: php javascript jquery html

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

一旦选择了某些内容,我希望这能够发挥作用' >然后该页面会重定向到自定义网址。

以下是我的加价。

<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

4 个答案:

答案 0 :(得分:2)

使用jQuery:

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

答案 1 :(得分:0)

我所知道的最简单方法是为选择元素分配onchange事件,并将选项的值设为网址。

<select onchange="window.location = this.options[this.selectedIndex].value;">
<option value="http://your-url">Large</option>
</select>

答案 2 :(得分:0)

希望这有帮助

$("select#wpsc_select_variation").change(function(){
    if ($(this).val() !== 0) {
        switch($(this).val())
        { 
            case(8):
                window.location.href = http://www.8.com
            case(7):
                window.location.href = http://www.7.com
            case(6):
                window.location.href = http://www.6.com
        }
    }
});

答案 3 :(得分:0)

我会编写i升函数,然后根据返回的结果触发它

<?PHP
    function redirect($where){      
       header("Location: $where");
    }

    if ($_REQUEST['select1'] == '8'){
        redirect('http://example.com/somewhere.php');
    }elseif($_REQUEST['select1'] == '7'){
        redirect('http://example.com/elsewhere.php');
    }elseif($_REQUEST['select1'] == '6'){
        redirect('http://example.com/elsewhere.php');
    }
?>

<form>
<select name="select1" class="wpsc_select_variation" name="variation[5]" id="variation_select_48_5" onchange="this.form.submit()">
<option value="0" >-- Please Select --</option>
<option value="8" >Large</option>
<option value="7" >Medium</option>
<option value="6" >Small</option>
</select>

唯一需要的javascript在select标记内触发提交onchange="this.form.submit()"