$("#selectunit").change(function(){
var index3 = layer.load(1, {
shade: [0.1,'#fff'] //0.1透明度的白色背景
});
selectapart = $("#selectapart option:selected").val();
selectbuilding = $("#selectbuilding option:selected").val();
selectunit = $("#selectunit option:selected").val();
if(selectapart ==0 || selectbuilding ==0 ||selectunit==0){
return false;
}
$.ajax({
url: '/getroom.html',
type: 'POST',
dataType: 'json',
data:{apartid:selectapart,buildingid:selectbuilding,unitid:selectunit},
success:function(e){
if(e.code==1){
layer.close(index3);
$("#selectroom").html(e.data);
}
}
});
});本文为看恩吧原创文章,转载无需和我联系,但请注明来自knsay.com