jquery ajax関数では、サーバーに「true」または「false」の文字列を受け取ります。次に、結果を知りたいだけですが、if条件でfalseになるだけです。
$.ajax({
...
success: function(result) {
if(result == "true"){ // false???????
alert('true');
} else {
alert('false');
}
}
})
...
$.ajax({
...
success: function(result) {
var result2 = String(result);
alert(result2); // true
alert(typeof result2); // String
alert(typeof "true"); // String
if(result2 == "true"){ // false???????
alert('true');
} else {
alert('false');
}
}
})
...
...
誰かが私を助けることができますか?