站长统计
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>站长统计</title>
</head>
<body>
<script>
var Count = (function() {
var _img = new Image();
return function(param) {
var str = 'http://www.count.com/a.gif?';
for (var i in param) {
str += i + '=' + param[i];
}
_img.src = str;
}
})();
window.onload = function() {
Count({ num: 10 });
}
</script>
</body>
</html>
3.代理模板.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>代理模板 X域被代理页面A</title>
</head>
<body>
<script>
function callback(data) {
console.log('成功接收数据', data);
}
</script>
<iframe name="proxyIframe" id="proxyIframe" src=""></iframe>
<form action="4.代理模板.html" method="post" target="proxyIframe">
<input type="text" name="callback" value="callback">
<input type="text" name="proxy" value="4.代理模板.html">
<input type="submit" value="提交">
</form>
</body>
</html>
4.代理模板.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>代理模板 X域代理页面B</title>
</head>
<body>
<script>
window.onload = function() {
if (top == self) return;
var arr = location.search.substr(1).split('&'),
fn,
args;
for (var i = 0, len = arr.length, item; i < len; i++) {
item = arr[i].split('=');
if (item[0] == 'callback') {
fn = item[1];
} else if (item[0] == 'arg') {
args = item[1];
}
}
try {
eval('top.' + fn + '("' + args + '")');
} catch (e) {
}
}
</script>
</body>
</html>