我需要将此jquery转换为mootools。
$('tr[class$="-hours"]').css('display', 'none');
$$('XXX').setStyle('display', 'none');
mootools 1.12(我的CMS安装了这个版本)有类似上面的选择器吗?
答案 0 :(得分:2)
MooTools supports the W3C CSS3 Selectors。
$$('tr[class$="-hours"]').setStyle('display', 'none');