答案 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>