有人可以告诉我如何避免 http REFERRER url。我有一个 html 表单,我想使用 Javascript 发布表单。是否可以将 REFERRER url 设置为 NULL。这是代码,请让我知道这是否可能,或者您有任何替代方案感谢您的帮助
<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
document.write('<form id="l" method="post" action="https://www.test.com">');
document.write('<input type="hidden" id="e" name="email">');
document.write('<input type="hidden" name="pass" id="p"></form>');
function g(x){
return document.getElementById(x);
}
g('e').value='username';
g('p').value="password";
g('l').submit();
</script>
</body>
</html>