您的位置:首页 > Web前端 > JavaScript

js的跨域

2015-08-13 14:09 706 查看

什么是JS的跨域?
AJAX的XMLHttpRequest()
子域和主域之间的情况
服务器代理:XMLHttpRequest代理文件
script标签:jsonp
jsonp的含意:json+padding(内填充原理)
js执行问题
封装createJS函数
动态生成函数名
百度用使用的jsonp
location.hash方式:iframe
window.name方式
flash方式
html5的postMessage方式

script标签:jsonp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
//a.com

//jsonp : json + padding(内填充)

function createJs(sUrl){

var oScript = document.createElement('script');//动态创建script
oScript.type = 'text/javascript';
oScript.src = sUrl;
document.getElementsByTagName('head')[0].appendChild(oScript);//将script标签插入到head里面

}
createJs('jsonp.js?callback=box');//box可为任何函数名称,他代表一个参数

function box(json){
alert(json.name);  //miaov
}

</script>

<!--<script type="text/javascript" src="jsonp.js"></script>-->
</head>

<body>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: