jquery 跨域访问插件

demo用法

$.ajax({
url : myurl,//要访问的地址
type : 'GET',
success : function(res) {

alert(parseJson(res));


}
});

function parseJson(res) {

var strjson;
var i=0;
var ps = $(res.responseText).filter(function() {
return $(this).is('p')
});

ps.each(function() {

strjson=$(this).html();
if(++i>1){
return;
}


});

return eval('('+strjson+')');
}

你可能感兴趣的:(html,Ajax,function)