我有一个从JSON动态生成的下拉列表。格式如下:
<optgroup id="US" label="United States class="optiongroup>
<option value="AS">American Samoa</option>
<option value="AL">Alabama</option>
...
<option value="VI">US Virgin Islands</option>
<option value="UT">Utah</option>
<optgroup>
<optgroup id="CA" label="Canada" class="optiongroup">
<option value="AB">Alberta</option>
<option value="BC">British Columbia</option>
...
<option value="QC">Quebec</option>
<option value="YT">Yukon Territory</option>
</optgroup>
我试图找出是否已选择了optgroup中的所有选项。从这里开始,如果选择了所有选项或者只选择了一些选项,我将生成一个依赖字符串,所以如果选择了整个美国:
country = {[US]}
如果仅选择了TN和MS:
state = {country: US, statelist: [TN, MS]}
我的第一次尝试是这样的:
$(".optiongroup").each(function() {
var optgroup = $(this);
$(optgroup.children()).each(function () {
if ($(this).is(':selected')) {
statearray.push($(this).attr('value'));
state_flag = 1; //see if state exists
} else {
country_flag = 0; //entire country not selected
}
}
由于某种原因,这对我没有用。
编辑: 如果我选择两个状态说TN和AL,它将返回statelist:[Obj obj]
答案 0 :(得分:1)
你必须多做一些检查,看看是否所有人都被选中了:
$(".optiongroup").each(function() {
var options = $(this).children("option"),
length = options.length;
if (options.filter(":selected").length == length) {
//all are selected, do something!
country_flag = 1;
return true; //continue
} else {
//Not all selected, so push states
options.filter(":selected").each(function() {
statearray.push(this.value);
});
}
});
答案 1 :(得分:0)
看起来你没有宣布&#34; statearray&#34;在你开始推进它之前作为一个数组。同样适用于&#34; state_flag&#34;和&#34; country_flag。&#34;
答案 2 :(得分:0)
试试这个......希望它能起作用
$("#selectId").children('optgroup').each(function(){
if($(this).children('option').length == $(this).children('option:selected').length){
// do stuff here when all options were selected under an optgroup
}else{
// do stuff here when all options were NOT selected under an optgroup
}
});