呼叫web接口,get請求,發現提示:No 'Access-Control-Allow-Origin' header is present on the requested resource. 這個和安全機制有關,預設不允許跨域呼叫 處理手段:使用jsonp格式, ajax請求參數dataType:'JSONP'。 複製程式碼 程式碼如下: $.ajax({ url: "http://.......", type: 'GET', dataType: 'JSONP',//here success: function (data) { } }); 哎這真是難者不會,會者不難啊,簡單的一行程式碼,就解決了這個大問題。 。 。 。哭~