html 隐藏字段的URL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 隐藏字段的URL相关的知识,希望对你有一定的参考价值。
<script>
document.addEventListener("DOMContentLoaded", function(event) {
/* Name of hidden field where URL should be stored */
const hiddenFieldName = 'referrer';
if (window.__page_generator) {
document.querySelector(`form input[name="${hiddenFieldName}"]`).value = window.location.href;
} else {
document.querySelector(`form input[name="${base64_encode(hiddenFieldName)}"]`).value = window.location.href;
}
});
</script>
以上是关于html 隐藏字段的URL的主要内容,如果未能解决你的问题,请参考以下文章
html 捕获隐藏字段中的上一个URL
html 捕获隐藏字段中的上一个URL
html 捕获隐藏字段中的上一个URL
html 捕获隐藏字段中的上一个URL
html 捕获隐藏字段中的上一个URL
在提交 IFRAME 表单之前,将父 url 保存到隐藏字段