如何让 window.name 在刷新之间“粘贴”?
我正在尝试使用 window.name 来区分多个浏览器窗口,因此每个窗口都可以显示不同类型的数据,但在同一个 URL 上。
但是window.name
不会粘。
这是我在页面中间的测试代码......
document.write( '<br> before set is: ' + window.name );
window.name = "blah";
document.write( '<br> after set is: ' + window.name );
这是页面输出,这表明它没有粘性......
before set is: showframe
after set is: blah