帮助使用 jquery 选择器的正则表达式

发布于 2024-09-24 03:05:50 字数 282 浏览 0 评论 0原文

需要帮助编写正则表达式来匹配包含短语 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心舞飞扬 2024-10-01 03:05:50
$("[class*=block-container]")
$("[class*=block-container]")
跨年 2024-10-01 03:05:50

你太接近了!这就是您想要的,*= 选择器。 http://api.jquery.com/category/selectors/

像这样:

$('*[class*=block-container]').fadeOut();

我测试过它位于具有 .然后做了:
$('[class=opmen]').fadeOut();

它淡出顶部菜单 div。

You're so close! This is what you want, the *= selector. http://api.jquery.com/category/selectors/

Like this:

$('*[class*=block-container]').fadeOut();

I tested it on a page that has . And then did:
$('[class=opmen]').fadeOut();

And it faded out the topmenu div.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文