js文件代码如下
function searchPointByName(area) {
var weatherData= new Object();
$.ajax({
url:'http://wthrcdn.etouch.cn/weather_mini?city='+area,
type:'POST',
dataType:'jsonp',
success:function (data) {
if(data.status=='1002'){
alert('没有找到该城市,请重新选择');
return false
}else{
weatherData.ganmao=data.data.ganmao;
weatherData.wendu=data.data.wendu;
weatherData.yesterday=data.data.yesterday;
weatherData.city=data.data.city;
}
}
});
console.log(weatherData);
console.log(weatherData.city);
return weatherData;
}
为什么在主HTML页面里var weatherData=searchPointByName(area);console.log(weatherData)
在控制台打印出来的是 注意Object {}里面是有内容的,点击打开后是这样
为什么通过weatherData.XXX 如 weatherData.city 拿到里面的值为undefind
你点击那个红色区域的感叹号,你应该会看到"Value below was evaluated just now."。
意思,就是你点击打开后,看到的值并不是console.log执行时候
weatherData
的值你可以用
console.log(JSON.stringify(weatherData))
来试验下