HTML
<div id="opts" class="styled-select">
<select id="combo1" class="combo" data-index="1">
<option></option>
<option val="Opt1">Opt1</option>
<option val="Opt2">Opt2</option>
<option val="Opt3">Opt3</option>
</select>
</div>
<div id="opts2" class="styled-select">
<select id="combo2" class="combo2" data-index="1">
<option></option>
<option val="Opt11">Opt11</option>
<option val="Opt22">Opt22</option>
<option val="Opt32">Opt33</option>
</select>
</div>
jQuery
$('#opts').on('change', '.combo', function() {
var selectedValue = $(this).val();
if ($(this).find('option').size() > 2) {
var newComboBox = $(this).clone();
var thisComboBoxIndex = parseInt($(this).attr('data-index'), 10);
var newComboBoxIndex = thisComboBoxIndex + 1;
$('.parentCombo' + thisComboBoxIndex).remove();
if (selectedValue !== '') {
newComboBox.attr('data-index', newComboBoxIndex);
newComboBox.attr('id', 'combo' + newComboBoxIndex);
newComboBox.addClass('parentCombo' + thisComboBoxIndex);
newComboBox.find('option[val="' + selectedValue + '"]').remove();
$('#opts').append(newComboBox);
}
}
});
2つの異なるコンボボックスに同じコードを複製/使用することはできません。何らかの問題が発生しているようです。
2つのコンボボックスに同じ「効果」を持たせるにはどうすればよいですか?
乾杯。