次のオプションを選択できるボタンを作成しようとしています。
だから、私はいくつかのオプションを備えた選択(id = selectionChamp)、入力次(id = fieldNext)を持っています、そして私はそれをやろうとします:
$('#fieldNext').click(function() {
$('#selectionChamp option:selected', 'select').removeAttr('selected')
.next('option').attr('selected', 'selected');
alert($('#selectionChamp option:selected').val());
});
しかし、次のオプションを選択できません。
$('#fieldNext').click(function() {
$('#selectionChamp option:selected').next().attr('selected', 'selected');
alert($('#selectionChamp').val());
});
$("#fieldNext").click(function() {
$("#selectionChamp > option:selected")
.prop("selected", false)
.next()
.prop("selected", true);
});
JQueryもないので非常に単純です。最後のものに到達すると、これは最初のオプションにループします。
function nextOpt() {
var sel = document.getElementById('selectionChamp');
var i = sel.selectedIndex;
sel.options[++i%sel.options.length].selected = true;
}
window.onload = function() {
document.getElementById('fieldNext').onclick = nextOpt;
}
いくつかのテストマークアップ:
<button id="fieldNext">Select next</button>
<select id="selectionChamp">
<option>0
<option>1
<option>2
</select>
$(function(){
$('#button').on('click', function(){
var selected_element = $('#selectionChamp option:selected');
selected_element.removeAttr('selected');
selected_element.next().attr('selected', 'selected');
$('#selectionChamp').val(selected_element.next().val());
});
});
私はそのようなボタンがオプションを介してループし、変更イベントをトリガーすることを期待します。そのための可能な解決策は次のとおりです。
$("#fieldNext").click(function() {
if ($('#selectionChamp option:selected').next().length > 0)
$('#selectionChamp option:selected').next().attr('selected', 'selected').trigger('change');
else $('#selectionChamp option').first().attr('selected', 'selected').trigger('change');
});
ここにjsFiddleがあります: http://jsfiddle.net/acosonic/2cg9t17j/3/
$('#fieldNext').click(function() {
$('#selectionChamp option:selected').removeAttr('selected')
.next('option').attr('selected', 'selected');
alert($('#selectionChamp option:selected').val());
});
これを試して :
$(document).ready(function(){
$("#fieldNext").on("click",function(){
$optionSelected = $("#selectionChamp > option:selected");
$optionSelected.removeAttr("selected");
$optionSelected.next("option").attr("selected","selected");
});
});
Option要素に加えてoptiongroup要素がある場合、他のソリューションは機能しません。その場合、これはうまくいくようです:
_var options = $("#selectionChamp option");
var i = options.index(options.filter(":selected"));
if (i >= 0 && i < options.length - 1) {
options.eq(i+1).prop("selected", true);
}
_
(i
の式はoptions.index(":selected")
と書くこともできると思うかもしれませんが、これは常に機能するとは限りません。理由はわかりません。説明をお待ちしています。)