jquery/js ajax 跨域4種方法

來源:互聯網
上載者:User


關於ajax跨域問題,今天整理了一下,其實還有其他辦法了,個人推薦以下4種。請參考:ajax 跨域執行個體
一,傳統的ajax方法

1,js代碼

$("#ajax").click(function(){ 
 $.ajax({ 
 type: "POST", 
 url: "/test2.php", 
 data: 'name=ajax', 
 dataType:"json", 
 success: function(data){ 
 $('#Result').text(data.name); 
 } 
 }); 
 }); 

2,test2.php代碼

<?php 
header("Access-Control-Allow-Origin:http://blog.51yip.com");    //允許blog.51yip.com提交訪問 
//header("Access-Control-Allow-Origin:*");    //允許任何訪問 
echo json_encode($_POST); 

二,ajax jsonp

$("#jsonp").click(function(){ 
 $.ajax({ 
 url: 'http://manual.51yip.com/test1.php', 
 data: {name: 'jsonp'}, 
 dataType: 'jsonp', 
 jsonp: 'callback',      //為服務端準備的參數 
 jsonpCallback: 'getdata',   //回呼函數 
 success: function(){ 
 alert("success"); 
 } 
 }); 
 }); 
 
function getdata(data){ 
 $('#Result').text(data.name); 

2,test1.php


<?php 
 if(isset($_GET['name']) && isset($_GET['callback']))   //callback根js端要對應,不然會報錯的 
 { 
 echo $_GET['callback']. '(' . json_encode($_GET) . ');';   //格式固定的,為什麼這樣,不清楚 
 } 
?> 

三,$.getJSON


$("#getjson").click(function(){ 
 $.getJSON('http://manual.51yip.com/test1.php?name=getjson&callback=?', function(data){  //沒有回呼函數,直接處理 
 $('#Result').text(data.name); 
 }); 
}); 

四,$.getScript

 

$("#getscript").click(function(){ 
 $.getScript('http://manual.51yip.com/test1.php?name=getscript&callback=getdata');  //回呼函數根jsonp一樣 
}); 

也可以通過查看例子源碼,來查看JS代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.