web-dev-qa-db-ja.com

jQueryで次のオプションを選択する

次のオプションを選択できるボタンを作成しようとしています。

だから、私はいくつかのオプションを備えた選択(id = selectionChamp)、入力次(id = fieldNext)を持っています、そして私はそれをやろうとします:

$('#fieldNext').click(function() {
    $('#selectionChamp option:selected', 'select').removeAttr('selected')
          .next('option').attr('selected', 'selected');

    alert($('#selectionChamp option:selected').val());      
});

しかし、次のオプションを選択できません。

27
$('#fieldNext').click(function() {
    $('#selectionChamp option:selected').next().attr('selected', 'selected');

    alert($('#selectionChamp').val());      
});
30
bugwheels94
$("#fieldNext").click(function() {
    $("#selectionChamp > option:selected")
        .prop("selected", false)
        .next()
        .prop("selected", true);
});​

デモ:http://jsfiddle.net/w9kcd/1/

16
VisioN

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>
9
RobG
$(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());

  });
});

http://jsbin.com/ejunoz/2/edit

2
Riz

私はそのようなボタンがオプションを介してループし、変更イベントをトリガーすることを期待します。そのための可能な解決策は次のとおりです。

$("#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/

1
$('#fieldNext').click(function() {
$('#selectionChamp option:selected').removeAttr('selected')
      .next('option').attr('selected', 'selected');

alert($('#selectionChamp option:selected').val());      
});
0
user1047100

これを試して :

    $(document).ready(function(){
        $("#fieldNext").on("click",function(){
            $optionSelected = $("#selectionChamp > option:selected");
            $optionSelected.removeAttr("selected");
            $optionSelected.next("option").attr("selected","selected");       
        });
    });
0
jbrtrnd

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")と書くこともできると思うかもしれませんが、これは常に機能するとは限りません。理由はわかりません。説明をお待ちしています。)

0
robinst