var f= false;
$.ajax({
type:"POST",
async:false,
url:U('Public/rightName'),
data:"username="+value,
success:function(data){
if(data=="1"){
$("#"+tip).addClass('errors').fadeIn().html('不存在');
f= false;
}else if(data=="2"){
$("#"+tip).removeClass('errors').addClass('right').fadeIn().html('');
f= true;
}
}
});
alert(f);
多參數傳遞:
data:{"param1":"value1","param2":"value2"}
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
//驗證完成日期是否小於立項日期
var pro_build=false;
$.ajax({
type:"POST",
async:false,
url:"?moduleid=50&m=achievement&action=check_pro_build_date&projectid="+$("#projectid").val()+"&ach_finish_date="+ach_finish_date,
success:function(data){
if(data.state=="9"){
pro_build=true;
$.dialog.tips(data.reason,0.8,'error.gif').lock();
document.getElementById("ach_finish_date").focus();
$("#dach_finish_date").html("完成日期不能小於立項日期").addClass("custom_error");
}
},
dataType:'json'
});
if(pro_build==true){
return false;
}