百木园-与人分享,
就是让自己快乐。

跨域访问方法介绍(4)--使用 window.name 传值

浏览器窗口有 window.name 属性。这个属性的最大特点是,无论是否同源,只要在同一个窗口里,前一个网页设置了这个属性,后一个网页可以读取它。这种方法的优点是,window.name 容量很大,可以放置非常长的字符串;缺点是必须监听子窗口 window.name 属性的变化,影响网页性能。本文主要介绍使用 window.name 来实现跨域数据传递,文中所使用到的软件版本:Chrome 90.0.4430.212。

1、步骤说明

在 a.html(http://localhost:8080/a.html) 页面打开 c.html(http://localhost:9090/c.html) 页面,c.html 页面设置 window.name 属性并跳转到 b.html(http://localhost:8080/a.html),此时在 a.html 页面就可以获取到 c.html 页面设置的 window.name 属性的值。

2、a.html(http://localhost:8080/a.html)

<!DOCTYPE html>
<html>
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />
<title>window.name 测试</title>

</head>
<body>
<button onclick=\"openChild()\">打开子页面</button>
</body>

<script type=\"text/javascript\">
function openChild() {
let childWindow
= window.open(\"http://localhost:9090/c.html\");

//监听子窗口window.name的变化
let interval = setInterval(function(){
//子窗口window.name发生变化,停止定时任务
if (childWindow.name) {
clearInterval(interval);
console.log(childWindow.name);
childWindow.close();
}
},
2000);
}

</script>
</html>

来源:https://www.cnblogs.com/wuyongyin/p/14857702.html
图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » 跨域访问方法介绍(4)--使用 window.name 传值

相关推荐

  • 暂无文章