關於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代碼