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.
我在不同的文件夹中有两个相同的表格(重复),因为每个文件夹都可以被选定的一组人访问。现在我想摆脱重复,只保留一个文件。但是,我希望该文件能够找出用户从哪个文件夹访问该文件,并在成功提交结束时重定向回他来自的文件夹。
有任何想法吗?
最简单的方法可能是在引用页面的表单中添加一个隐藏字段:
<input type="hidden" value="" id="referrer" />
然后可以使用任何服务器端代码设置,也可以在加载表单的页面时使用 javascript 设置:
document.getElementById('referrer').value = escape(document.referrer);