我在php中看起来像这样的json
json_encode('Test string');
它发回字符串我用firebug检查。 我怎么才能访问它?
success: function(theResponse) {
alert()
}
我应该在警报内加入那个字符串?
答案 0 :(得分:4)
您应该将输出格式化为有效的JSON,即使它是单个字符串:
json_encode(array("message" => "No Return Email Address Specified!"));
然后你可以在JS中访问它:
success: function(theResponse) {
alert(theResponse.message)
}
答案 1 :(得分:-1)
在响应对象上使用。$
success: function(theResponse) {
alert(theResponse.$)
}