-1
這是我處理的代碼:異步:假/真差,並使用
$.ajax({
type : "POST",
url : "http://localhost:9090/getPassword",
data : {
email : $("#EmailAddress").val()
},
success : function(data) {
var path = "${pageContext.request.contextPath}";
if (data == true) {
toast("Password has been sent on your Email Id", "success");
} else if (data == false) {
toast("Sorry , there is no such account", "warning");
}
}
})
什麼是在AJAX使用async: false
/true
打電話?你應該什麼時候使用它?如果您在body
標記之後編寫腳本,而不是將其寫入head
,它會影響性能嗎?
還有進一步的問題.. – Pranesh