document.URL在Javascript中匹配

时间:2010-04-28 08:25:03

标签: javascript regex

我有一个看起来像这样的网址 https://test.high.com/people/11111111-name-firstname-_custa/deals/new

现在我需要匹配document.URL 如果我在那个页面上,如果是这样我会提醒一条消息。

重要的部分是/ deals / new

我如何在Javascript中匹配?

3 个答案:

答案 0 :(得分:2)

匹配任何以"/deals/new"结尾的字符串的正则表达式是

"/deals/new$"

如果您的链接仅包含/deals/new,请尝试

"/deals/new(/|$)"

答案 1 :(得分:2)

var regex = new RegExp("/deals/new$");
if(document.URL.match(regex))
  alert("yeah");

答案 2 :(得分:-1)

您是说要从javascript访问文档网址吗?

这是通过文档location属性完成的。 请尝试document.location.href或仅location.href