const page = window.location.pathname +字符串

时间:2018-07-29 19:22:36

标签: javascript

使用以下代码,当路径名与${post}匹配时,我可以应用/post

 const post =
 window.location.pathname === '/post'

但是我如何才能在包含/post/的任何 wild 路径上实现这一点,又用诸如/post/1/post/2这样的字符串扩展路径?< / p>

我真的希望它像添加*一样容易,但事实并非如此。

1 个答案:

答案 0 :(得分:1)

您可以尝试检查路径是否包含某个子字符串。

if(window.location.pathname.includes('/post/')){

}