JQuery 函数隐藏其功能与特定模式匹配的所有标签
我是新的 Jquery,编写了一个如下所示的切换函数:
$('.one-toggle').click(function(){
$('.one-graph').toggle();
});
基本上我想更改我的两个 CSS 选择器,以便它们匹配任何具有单切换和单图的标签。我不希望选择器需要直接匹配。也许是正则表达式?
I am new Jquery and have written a toggle function that looks like this:
$('.one-toggle').click(function(){
$('.one-graph').toggle();
});
Basically I want to change my two CSS selectors so that they match any tag that has one-toggle and one-graph. I don't want the selector to require a direct match. Regex maybe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用标准 CSS 选择器分隔符:
Just use the standard CSS selector separator:
要匹配具有两个类名的标签,您只需要这样:
To match tags that have both class names, you just need this: