gpt4 book ai didi

javascript - 离开页面时将 url 从 HTTPS 更改为 HTTP javascript

转载 作者:太空宇宙 更新时间:2023-11-03 15:05:16 25 4
gpt4 key购买 nike

如果 location.procotcol 不是 https,我目前会更改单个页面以确保安全:

 if (location.protocol != "https:")
{
location.replace("https://" + window.location.host + window.location.pathname);
}

这行得通,但是当我离开页面时,我的协议(protocol)仍然是 https,我希望它是 http。

我试过下面的方法,当我离开页面时会触发,但它似乎对协议(protocol)没有影响

$(window).unload(function() {
location.replace("http://" + window.location.host + window.location.pathname);
});

我是否可以在离开页面时将协议(protocol)更改为 http,但功能来自正在离开的页面。

谢谢

最佳答案

当用户离开页面时,您无法更改位置。这将非常烦人并且很容易被垃圾邮件发送者利用。

关于javascript - 离开页面时将 url 从 HTTPS 更改为 HTTP javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10814979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com