最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - search for http: and https: in a string - Stack Overflow

programmeradmin2浏览0评论

I want to prepand http:// to every URL that doesn't begin with it, I used this:

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

The problem is that it appends http:// to URLs that begin with https//
I want to ignore both http:// and https://.

I want to prepand http:// to every URL that doesn't begin with it, I used this:

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

The problem is that it appends http:// to URLs that begin with https//
I want to ignore both http:// and https://.

Share Improve this question edited Jul 2, 2012 at 18:50 gdoron 150k59 gold badges302 silver badges371 bronze badges asked May 18, 2012 at 9:35 user1339164user1339164 3571 gold badge5 silver badges11 bronze badges 1
  • Try the 3rd response of this post stackoverflow./questions/37684/… That's ok for me – Stephane G. Commented Aug 10, 2017 at 11:21
Add a ment  | 

2 Answers 2

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

The regex way is:

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

You could also use a regex:

if(!/^https?:\/\//.test(val)) {
    val = 'http://' + val;
}
发布评论

评论列表(0)

  1. 暂无评论