在像这个jquery选择器这样的mootools中找到具有特定内容的选择器

时间:2011-08-31 21:48:42

标签: mootools

我需要将此jquery转换为mootools。

$('tr[class$="-hours"]').css('display', 'none');


$$('XXX').setStyle('display', 'none');

mootools 1.12(我的CMS安装了这个版本)有类似上面的选择器吗?

1 个答案:

答案 0 :(得分:2)

MooTools supports the W3C CSS3 Selectors

$$('tr[class$="-hours"]').setStyle('display', 'none');