JS - 检查字符串是否只包含一个单词,有几个变体,还有Nothing Else

时间:2015-05-29 14:24:58

标签: javascript jquery string

我想说的是,URL只包含mysite.com及其变体,但没有别的。我能想到的变化是:http://,https://,开头是www,最后是反斜杠.com /

如果它与上述其中一个匹配,则不包含任何其他内容winFormat =':homepage'。如果有的话 - 做其他的,我有。

我认为这与RegEx有关,这不是我的一杯茶。

var winLoc = location.href
var winFormat
if(winLoc.indexOf('error') > -1){
   var winRef = document.referrer.replace(/^.+\.edu/,'').split('/').join(':').replace(/:$/,'');
   winFormat = ':error' + winRef
}
else if ('need this check - if just homepage and/or variations') {
    winFormat = ':homepage'
}
else{
    winFormat = winLoc.replace(/^.+\.edu/,'').split('/').join(':').replace(/:$/,'')
}

0 个答案:

没有答案