我想在选择下拉列表值时显示页面

时间:2012-04-20 10:33:15

标签: codeigniter

- 选择 -                     admin / order / orderlist / paid“style =”color:#000000;文字修饰:无“>付费                     admin / order / orderlist / successfully“style =”color:#000000;文字修饰:无“>成功 ?>

1 个答案:

答案 0 :(得分:0)

也许你在jQuery中寻找:selected选择器:http://api.jquery.com/selected-selector/

简单来说,你可以做一些与此相似的JS:

$("#mySelect").change(function () {
    var selected = $(this + "option:selected").text();
    if(selected == "someValue")
        window.location = "someUrl";
});​

...也就是说,当有人选择一个项目时,使用jQuery选择器绘制所选项目的文本。知道了这个价值,您就可以决定要向用户发送哪个网址 - 在这种情况下,使用window.location

相应的HTML可能如下所示:

<select id="mySelect">
    <option>someValue</option>
    <option>someOtherValue</option>
</select>