我正在使用JSON数据填充下拉列表
function(dta){
$.each(dta, function(index, item) {
//some other inputfield values are updated here...
$("#unservices option[value="+item.service_id+"]").prop('selected', true);
}
});
如何为$("#unservices:)
编写if语句以检查当前值?
if($( '#unservices' ).val() == '1'){
alert($( '#unservices' ).val())
}};
我的问题是$( '#unservices' ).val())
总是等于“1”?