jquery架構下解決ajax跨域問題

來源:互聯網
上載者:User

HTML代碼:

<button type="button" onclick="fun1()">跨域訪問</button><script type="text/javascript" src="http://code.jquery.com/jquery-1.10.1.min.js"></script>

js代碼:

   // 跨域訪問問題    function jsonCallBack(url,callback) {      $.getScript(url,function(){      callback(json);      });    }    function fun1(){      jsonCallBack('http://mupicheng.com/js.php',function(json){      alert(json.message);      })    }

跨域訪問的PHP檔案:

<?php    $ary = array('result'=>0,'message'=>'跨域成功');    $json = json_encode($ary);    //一定要這樣定義輸出最後的JSON資料,這是利用JS的閉包特性    echo "var json=$json;";?>

該方案注意事項:
1:jQuery的版本必需大於 1.2版,否則不支援跨域處理
2:只支援 GET 方式的請求
3:請求的 URL 必需按如下例子中那樣返回資料.
該方案注意利弊:
優點:
1:比用 iframe 加輸出 parent.XXX() 的方案簡單高效明了,前端處理更方便
2:相當 proxy 方式在編程上也簡單多了
缺點:
1:必需使用jQuery,
2:返回的資料格式必需按樣本樣,當然不限於JSON,但它是處理最方便的.

GET方式訪問執行個體:

<script type="text/javascript">function fun1(){    $.getJSON("http://a.com/c.php?no=10&msg=ok&format=json&jsoncallback=?",    function(data){    alert(data.msg);});}</script><button type="button" onclick="fun1()">跨域處理</button>

c.php檔案:

<?php$no = $_GET['no'];$msg = $_GET['msg'];$json = json_encode(array('no'=>$no,'msg'=>$msg));//必需以下這樣輸出echo $_GET['jsoncallback'].'('.$json.')';

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.