gpt4 book ai didi

javascript - 使用正则表达式和 javascript 将 HTTP url 重写为 HTTPS

转载 作者:行者123 更新时间:2023-12-03 03:27:28 25 4
gpt4 key购买 nike

我面临的情况是,我需要用 javascript 重写 url 并将其从 http 协议(protocol)切换为 https。

我可以将 https 网址与:

if(url.match('^http://')){

但是如何使用正则表达式和 JavaScript 形成 https url?

url =  "https://" + ?;

最佳答案

直接用正则表达式替换:

url = url.replace(/^http:\/\//i, 'https://');

关于javascript - 使用正则表达式和 javascript 将 HTTP url 重写为 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5491196/

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