假设我需要在分配给变量 .bar
的元素中找到所有 foo
元素。
在 jQuery 中,foo.find('.bar')
解决了这个问题。
mooTools 中的等效功能是什么?
最佳答案
<div id="container">
<span class="elems">...</span>
<span class="elems">...</span>
...
</div>
----
var elems = $('container').getElements('.elems');
// elems is now an array containing all spans with the class 'elem'
或者:
var elems = $$('#container.elems');
关于javascript - 如何在mootools中的另一个元素中找到一个元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2386769/