// this is ajax response in json obj it print 'policyListing'
alert(response.result[i].screenName);
alert(response.result[i].screenName=='policyListing');// it return false
它应该返回true。我不知道如何成为现实的问题
答案 0 :(得分:0)
可变类型的screenName可以是一个对象。您可以使用alert( typeof(response.result[i].screenName) );
检查变量的类型
如果var不是字符串类型,您可以尝试将其转换为带有.toString()的字符串。
例如:
alert(response.result[i].screenName.toSting() == 'policyListing');