gpt4 book ai didi

javascript - 搜索 http ://and https://in a string

转载 作者:行者123 更新时间:2023-11-30 07:02:56 25 4
gpt4 key购买 nike

我想将 http:// 预先添加到每个不以它开头的 URL,我使用了这个:

if (val.search('http://') === -1) {
val = 'http://' + val;
}

问题是它将http://附加到以https//
开头的URL我想忽略 http://https://

最佳答案

if (val.indexOf('http://') === -1 && val.indexOf('https://') === -1) {
val = 'http://' + val;
}

regex 方式是:

if (!val.search(/^http[s]?:\/\//)){
val = 'http://' + val;
}

关于javascript - 搜索 http ://and https://in a string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10650144/

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