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.')';