Mootools是否具有相当于jQuery的.is()?或者如果没有,Mootools中此功能的最佳方法是什么?我搜索了一段时间,似乎无法找到正确的解决方案。
我想在Mootools中实现的jQuery示例。
if(a.is(':last-child')){
console.log('this should return true >', a.is(':last-child'));
}
任何帮助都会很棒,谢谢!
答案 0 :(得分:1)
嗯,我不知道Mootools的等效内容,但您可以使用native matches()
函数。 Other Link
var bd = document.body;
console.log(bd.matches('body')) //true
console.log(bd.matches(':last-child')) //true