ここで何が間違っているのかわかりません。
json (応答):
Response: {"success":true,"message":"Registration Success, check your email to validate your account so you can login"}
私のコード:
console.log("Response: "+response);
obj = JSON.parse(response);
alert(obj.success);
if (obj.success == 'true')
{
console.log("Response:success detected ");
alert('hi');
}
alert(obj.success) が「true」のアラートを出しても、if ステートメントの中に入ることはありません。if ステートメントが正しく機能しない原因は何ですか?