是否可以检查网址是否以例如:http://www.odsavacky.cz/blog/wpcproduct/?
开头答案 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)
}