AJAX中這句話是什么意思?
這是jquery 里面的ajax的post方法的 代碼 function ShowDefaultPage() {//函數(shù)開始 $.ajax({ type: "POST", //方法為post url: "Default.aspx/GetCompanyID", //數(shù)據(jù)提交到這個(gè)url data: "{}", //數(shù)據(jù)內(nèi)容,你這里是空值 contentType: "application/json; charset=utf-8", dataType: "json", //數(shù)據(jù)以json的格式返回 success: function(msg) { //返回的數(shù)據(jù)放在msg形參中 if(msg.d==null) //如果數(shù)據(jù)中d的數(shù)值是空 ,往下執(zhí)行 return; $("#iframeRight").attr("src",msg.d); } }) }