JavaScript 路径中的通配符
我需要在 if 语句末尾指定带有通配符的路径。 就像文件系统中的 * 的等价物一样
if(document.location.pathname == "/project/*") { jQuery("#regbutton").css('display','none'); };
,if 应该为所有以 /project/ 开头的路径触发,
有什么方法可以做到这一点,而无需求助于狂野的正则表达式吗?
jquery 解决方案也很棒
..thnx
I need to specify a path with wildcard on the end of an if statement..
like the equivalent of * in the filesystem
if(document.location.pathname == "/project/*") { jQuery("#regbutton").css('display','none'); };
ie.. the if should fire for all paths that start with /project/
any way to do this w/out resorting to wild regex stuff?
jquery solution would be great too..
thnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这使用了正则表达式,但它与正则表达式一样简单。
This uses a regex, but it's about as tame as regexes get.
你可以这样做: -
这样,你下次就可以随时继续使用startsWith()函数。
You can do something like this:-
This way, you can keep using startsWith() function anytime you want next time.