在 mootools 中查找具有特定内容的选择器,例如 jquery 选择器
我需要将此 jquery 转换为 mootools。
$('tr[class$="-hours"]').css('display', 'none');
$$('XXX').setStyle('display', 'none');
mootools 1.12(我的CMS安装了这个版本)有类似上面选择器的东西吗?
I need to convert this jquery to mootools.
$('tr[class$="-hours"]').css('display', 'none');
$('XXX').setStyle('display', 'none');
does mootools 1.12 (my CMS has this version installed) have something like the selector above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MooTools 支持 W3C CSS3 选择器。
MooTools supports the W3C CSS3 Selectors.