いくつかのコンボボックスがあり、選択したコンボボックスの値が必要です。
私はこれをやっています:
しかし、機能していません。
var check_combo_box_values = $('#combos .combo').filter(function() {
return this.selectedIndex === 0;
}).map(function ()
{
return $('option:selected', this).map(function() {
return parseInt(this.value);
}).get();
}).get();
一方、これは機能しています。
var combo_box_values = $('#combos .combo').filter(function() {
return this.selectedIndex === 0;
}).map(function ()
{
return $('option:not(:selected)', this).map(function() {
return parseInt(this.value);
}).get();
}).get();
私は2番目のコードを持っていて、それを自分のニーズに適合させようとしましたが、最初の試みが現れました。正しくないようです(:エラーはどこにありますか?
乾杯