如果 url 包含这样的内容,并且我想如果 segment1 等于某物,则执行此操作...
http://stackoverflow.com/segment1/segment2
喜欢:
if (segment1 = 'anyword')
{
..then do this
}
类似的东西?
如果 url 包含这样的内容,并且我想如果 segment1 等于某物,则执行此操作...
http://stackoverflow.com/segment1/segment2
喜欢:
if (segment1 = 'anyword')
{
..then do this
}
类似的东西?
您可以拆分网址:
var url = "http://stackoverflow.com/segment1/segment2";
var splits = url.replace('http://', '').split('/');
if(splits[1] == "segment1"){
}
你可以这样做
var myurl = "http://stackoverflow.com/segment1/segment2";
if(myurl.split('/')[3] == "segment1")
{
//your code
}
var s1 = "foo";
alert(s1.indexOf("oo") != -1);
或者
if (/anyword/.test(self.location.href))
{
....
}
您可以拆分 url,并检查每个路径名等,但如果您只是想检查 url 是否包含您可以执行的操作:
var url = 'http://stackoverflow.com/segment1/segment2';
if (url.indexOf('segment1') != -1) {
//do this
}