使用 jQuery 选择下一个选项

问题描述 投票:0回答:9

我正在尝试创建一个可以选择下一个选项的按钮。

所以,我有一个带有多个选项的选择(id=selectionChamp),一个输入下一个(id=fieldNext),我尝试这样做:

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

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

但是我无法选择下一个选项..谢谢!

javascript jquery jquery-selectors html-select
9个回答
39
投票
$('#fieldNext').click(function() {
    $('#selectionChamp option:selected').next().attr('selected', 'selected');

    alert($('#selectionChamp').val());      
});

@VisioN 的更好答案:https://stackoverflow.com/a/11556661/1533609


22
投票
$("#fieldNext").click(function() {
    $("#selectionChamp > option:selected")
        .prop("selected", false)
        .next()
        .prop("selected", true);
});​

演示:http://jsfiddle.net/w9kcd/1/


14
投票

即使没有 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>

4
投票
$(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
投票

我希望这样的按钮能够循环选择选项,并触发更改事件。这是可能的解决方案:

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


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

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

0
投票

试试这个:

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

0
投票

如果除了选项元素之外还有选项组元素,其他解决方案将不起作用。在这种情况下,这似乎有效:

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
投票

使用简单的javascript

next.onclick = e => {
  (color.selectedOptions[0].nextElementSibling || color.options[0]).selected = true
}
<select id="color">
  <option>red
  <option>blue
  <option>green
</select>
<button id="next">Select next</button>

© www.soinside.com 2019 - 2024. All rights reserved.