如果url地址以定义的字符串开头,如何检入javascript?

时间:2014-02-03 01:14:00

标签: javascript

是否可以检查网址是否以例如:http://www.odsavacky.cz/blog/wpcproduct/

开头

3 个答案:

答案 0 :(得分:3)

只需使用普通字符串搜索:

// if the url begins with this string
if (window.location.href.indexOf('http://www.odsavacky.cz/blog/wpcproduct/') == 0) {
    // Do what you want
}

答案 1 :(得分:1)

if (url.startsWith("http://google.com/")) {
     // do something
}

答案 2 :(得分:0)

不需要正则表达式。你可以像这样做

str="http://www.odsavacky.cz/blog/wpcproduct/blah"
function search(string){
    return (string.indexOf(str)==0)
}