帮助使用 jquery 选择器的正则表达式
需要帮助编写正则表达式来匹配包含短语 block-container
的任何类,
我想出了这个:'[class^=block-container]'
但我需要帮助在短语 block-container
周围书写通配符。
我需要匹配的示例:
nav-block-container-left
block-container-whitebox
right-block-container
Need help writing a regular expression to match any class containing the phrase block-container
I've come up with this: '[class^=block-container]'
but I need help writing the wild cards around the phrase block-container
.
Examples i need to match:
nav-block-container-left
block-container-whitebox
right-block-container
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你太接近了!这就是您想要的,*= 选择器。 http://api.jquery.com/category/selectors/
像这样:
我测试过它位于具有 .然后做了:
$('[class=opmen]').fadeOut();
它淡出顶部菜单 div。
You're so close! This is what you want, the *= selector. http://api.jquery.com/category/selectors/
Like this:
I tested it on a page that has . And then did:
$('[class=opmen]').fadeOut();
And it faded out the topmenu div.