次のオプションを選択できるボタンを作成しようとしています。
だから、私はいくつかのオプション、次の入力(id = fieldNext)を持つ選択(id = selectionChamp)を持っています、そして私はそれをやろうとします:
$('#fieldNext').click(function() {
$('#selectionChamp option:selected', 'select').removeAttr('selected')
.next('option').attr('selected', 'selected');
alert($('#selectionChamp option:selected').val());
});
しかし、次のオプションを選択できません..ありがとう!