$.getJSON("http://query.yahooapis.com/v1/public/yql?callback=?", {   
				    q: "select * from json where url='http://baidu.kuaidi100.com/query?type=tiantian&postid=886511927358&id=4'",   
				    format: "json"   
				}, function(data) {   
				    var $content = $("#content")   
				    if (data.query.results) {  
				        var result = JSON.stringify(data.query.results);
				        alert(result);
				        $content.text(result);  
				        var obj = eval('('+result+')');
				        alert(obj.json.message);
				    }  
				});  

  

相关文章:

  • 2021-10-18
  • 2021-10-19
  • 2021-10-15
  • 2021-12-19
  • 2021-12-19
  • 2021-10-10
猜你喜欢
  • 2021-07-28
  • 2022-12-23
  • 2021-04-18
  • 2021-09-12
  • 2021-07-02
  • 2022-12-23
  • 2021-06-23
相关资源
相似解决方案