1. 在線圖片: http://image.zhangxinxu.com/image/study/s/s256/mm3.jpg // mmX.jpg: X可為任意的數字
2. 在線json: 雅虎天氣api: https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20%3D%202151330&format=json
// 使用jquery獲取雅虎天氣
$.getJSON('https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20%3D%202151330&format=json', function(data) {console.log(data)});