$("form").submit( function () {
var BOOL = '123';
$.ajax({
type : 'POST',
url : '__URL__/select',
data : {
sn : $("input[name='sn']").val(),
},
success : function (bool) {
if (bool == "false") {
BOOL = false;
} else {
BOOL = true;
}
alert(BOOL); // 弹出true或false
}
})
alert(BOOL); // 弹出的是123 , 并没有弹出true或false
return false;
})
hhhzihao2
fordC
Its_forever
随时随地看视频慕课网APP