html 捕获隐藏字段中的上一个URL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 捕获隐藏字段中的上一个URL相关的知识,希望对你有一定的参考价值。

Script for capturing the page URL that loaded the current page. It only works if the page was opened through a link (if opened through a bookmark or redirect it returns an empty string).
<!-- START code for adding referrer URL to a hidden field -->
<script>
$(document).ready(function() {
var referrerUrl = document.referrer;
var fieldLabel = 'referrer';
$('input[name="' + window.btoa(fieldLabel) + '"]').val(referrerUrl);
}); 
</script> 
<!-- END code for adding referrer URL to a hidden field -->

以上是关于html 捕获隐藏字段中的上一个URL的主要内容,如果未能解决你的问题,请参考以下文章

html 捕获隐藏字段中的上一个URL

html 捕获隐藏字段中的上一个URL

html 捕获隐藏字段中的上一个URL

html 隐藏字段的URL

html 将页面的URL添加到隐藏字段

如何从 URL 获取值并将其添加为联系表 7 中的隐藏字段