Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 JavaScript 从另一个页面更新变量的值?
或者
是否可以在提交时使用表单来执行此操作,只需更新其他页面,但保留在表单所在的页面上?
我认为您正在搜索的是 AJAX(异步 JavaScript 和 XML),它执行获取或发布操作并等待服务器的结果。这样就可以在不跳转到页面的情况下提交表单。
看看这个 或者如果你使用 JQuery这个
您可以简单地通过 Ajax 发送所有要更新的数据,并在您所在的当前页面上简单地获取响应。