/HTML
Created
March 19, 2018 05:05
formのselectによるリンクの遷移 jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select id="target"> | |
<option value="https://www.yahoo.co.jp/">Yahoo!</option> | |
<option value="https://www.google.co.jp/">Google</option> | |
</select> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$('#target select').change(function() { | |
location.href = $('#target').val(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment