-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (39 loc) · 1.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<button> click </button>
<script>
// 调用它完成 jsonp 获得数据
function jsonp( url, fn ) {
// 构造一个函数到 window 上
var fnName = '__jsonpFn' + Math.random().toString().replace( '.', '' );
// 创建 script 标签
var script = document.createElement( 'script' ),
// 获得 页面的 head 标签
head = document.head;
// 设置 script 标签请求的 src, 记得带有参数
script.src = url + "?callback=" + fnName;
// 先绑定函数, 再请求更加安全
window[ fnName ] = function ( data ) { // 发回数据调用的内容
fn( data ); // 用户写的函数
// 表示函数执行结束, 可以考虑删除内容
delete window[ fnName ];
head.removeChild( script );
};
// 将 script 标签加到 页面中, 浏览器就会自动的请求下载 js 格式的字符串
head.appendChild( script );
}
document.querySelector( 'button' ).onclick = function () {
jsonp( 'http://website2.com/01-index.php', function ( data ) {
console.log( data );
});
};
</script>
</body>
</html>