admin管理员组文章数量:1340287
I am wanting to write some jQuery code that converts a HTML
<select>
<option> Blah </option>
</select>
bo box into something (probably a div) where selecting an item acts the same as clicking a link.
I guess you could probably use JavaScript to handle a selection event (my JavaScript knowledge is a little in disrepair at the moment) and 'switch' on the value of the bo box but this seems like more of a hack.
How can I go about this?
I am wanting to write some jQuery code that converts a HTML
<select>
<option> Blah </option>
</select>
bo box into something (probably a div) where selecting an item acts the same as clicking a link.
I guess you could probably use JavaScript to handle a selection event (my JavaScript knowledge is a little in disrepair at the moment) and 'switch' on the value of the bo box but this seems like more of a hack.
How can I go about this?
Share Improve this question edited Mar 5 at 22:06 isherwood 61.2k16 gold badges121 silver badges170 bronze badges asked Sep 8, 2008 at 1:51 Matt MitchellMatt Mitchell 41.9k35 gold badges121 silver badges185 bronze badges4 Answers
Reset to default 8The simple solution is to use
$("#mySelect").change(function() {
document.location = this.value;
});
This creates an onchange event on the select box that redirects you to the url stored in the value field of the selected option.
I'm not sure where you want to link to when you click the Div, but given something like this perhaps would work:
<select id="mySelect">
<option value="1">Option 1</option>
<option value="2">Option 2</options>
</select>
<div id="myDiv"/>
and the following JQuery creates a list of <div>
elements, a goes to a URL based on the value of the option:
$("#mySelect option").each(function() {
$("<div>" + $(this).text() + "</div>").appendTo($("#myDiv")).bind("click", $(this).val(), function(event) {
location.href = "goto.php?id=" + event.data;
});
});
$("#mySelect").remove();
Does this do what you want?
This bit of javascript in the 'select':
onchange="if(this.options[this.selectedIndex].value!=''){this.form.submit()}"
It's not ideal (because form submissions in ASP.NET MVC which I'm using don't appear to use the routing engine for URLs) but it does its job.
If you're going to have a lot of select boxes that you want to allow to use as redirects, without having to define them independently, try something similar to:
$("[id*='COMMON_NAME']").change(function() {
document.location = this.value;
});
And have your select boxes be named accordingly:
<select id="COMMON_NAME_001">...</select>
<select id="COMMON_NAME_002">...</select>
This creates a onchange event for all IDs containing "COMMON_NAME" to do a redirect of the <option>
value.
本文标签: javascriptHow can I navigate based on select element option clicksStack Overflow
版权声明:本文标题:javascript - How can I navigate based on select element option clicks? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743612891a2510296.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论