我想知道是否有任何方法可以通过var
文件传递.html
。
例如,在我的index.html
<a>
点击设置中:
var value = 'some text here';
和other.html
的链接。
我other.html
中第一个执行的脚本是:
console.log(value);
这是不是因为HTML文件可以传递变量?
答案 0 :(得分:0)
您可以将任何数据从一个页面发送到另一个页面,方法是将其作为host/other.html?value=something
在第一页中使用javascript或jquery在url中附加数据,在第二页中使用javascript或jquery检索它