所以我有点问题。我不记得如何在JavaScript中使用/*
,就像在网址
例如
if(URL == "www.thing.com/"){}
所以我不记得是要放/*
来制作它,以便它不仅仅是"www.thing.com"
,而是之后发生的所有其他事情,例如{{1} }}
它只是"www.thing.com/questions/..."
吗?
答案 0 :(得分:4)
*
在字符串中不起作用。
您可以使用String.prototype.indexOf
:
var URL = "www.thing.com/foo/bar";
if(URL.indexOf("www.thing.com/") === 0){ /* this is executed */ }
或者,如果您想要更灵活的通配符,请使用正则表达式。
答案 1 :(得分:0)
您可以像这样/^www\.thing\.com\/.*/