!DOCTYPE html>
html>
head>
script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js">/script>
script type="text/javascript">
$(document).ready(function(){
$("#b01").click(function(){
$.ajax({//danielinbiti.txt文件內(nèi)容:getAInfo(["input type='text' value='1222'/>"])
url: 'http://192.168.12.21:8080/systemr/danielinbiti.txt',
dataType: 'jsonp',//跨域設(shè)置jsonp
processData: false,
jsonpCallback:'getAInfo',//與文件中的getAInfo對(duì)應(yīng)
type: 'get',
success: function(data) {
$("#myDiv").html(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('error');
alert(XMLHttpRequest.status);
alert(XMLHttpRequest.readyState);
alert(textStatus);
}
});
});
$("#b02").click(function(){// 需要在后臺(tái)根據(jù)request獲取callback,然后才callback(需要返回的json內(nèi)容)的方式返回,getJSON是ajax的簡(jiǎn)化,只支持json格式
$.getJSON("http://192.168.12.21:8080/systemr/b.do?jsoncallback=?",function(result){
$("#myDiv").html(result);
});
});
});
/script>
/head>
body>
div id="myDiv">h2>通過(guò) AJAX 改變文本/h2>/div>
button id="b01" type="button">改變內(nèi)容01/button>
button id="b02" type="button">改變內(nèi)容02getJSON/button>
/body>
/html>
以上這篇Ajax的jsonp方式跨域獲取數(shù)據(jù)的簡(jiǎn)單實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。