jsonp不能post!
1. jsonp的請求都為get
2. jsonp相當於loadJS, 返回的"數據"直接以js執行
$.ajax({
url : "/static/get.php",
data : {
aa : "name"
},
type : "post",
success : function(data){
alert(data);
}
})
抓包可以看到:

請求:
http://xx/get.php?callback=jQuery17208796953377313912_1366782553589
但type:"get" 或 type:"post",dataType:"jsonp"時,一樣都是get方式:

請求:
http://xx/get.php?callback=jQuery17200924667939543724_1366782587492&aa=name&_=1366782587548
跨域需要jsonp時,只能用$_REQUEST獲取參數
