如何使用 Mootools 从 DOM 中选择元素?
我是 Mootools 的新手,我遇到了以下问题。
我有这个基于 ul 的菜单。
<ul class="moo_mmenu">
<li>
<a href="#">
<span>Trang Chu</span>
</a>
<ul>
<li>
<a href="#">
<span>lv2</span>
</a>
</li>
<li>
<a href="#">
<span>lv2</span>
</a>
</li>
</ul>
</li>
</ul>
我正在使用这个 mootools javascript 代码:
window.addEvent('domready', function() {
var root = $$('.moo_mmenu');
var units = // !!! << here is my problem, see below :(
units.setStyle('background-color' , 'blue');
});
在 units
变量中,我想使用 root 选择类 moo_mmenu
中的所有 li
元素变量,喜欢
// jQuery
$('li', root);
请帮忙,谢谢。
I'm new to Mootools and I'm stuck on the following problem.
I have this ul
based menu.
<ul class="moo_mmenu">
<li>
<a href="#">
<span>Trang Chu</span>
</a>
<ul>
<li>
<a href="#">
<span>lv2</span>
</a>
</li>
<li>
<a href="#">
<span>lv2</span>
</a>
</li>
</ul>
</li>
</ul>
And I'm using this mootools javascript code:
window.addEvent('domready', function() {
var root = $('.moo_mmenu');
var units = // !!! << here is my problem, see below :(
units.setStyle('background-color' , 'blue');
});
in the units
variable I want to select all the li
elements in the class moo_mmenu
by using root varible, like
// jQuery
$('li', root);
Please help, thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你使用
id="moo_mmenu"
会工作得很好。
如果你真的想使用
class="moo_mmenu"
(我真的不认为你这样做。)你可以这样做......如果你需要获取
li
元素直接来自root
var 你可以这样做。If you use
id="moo_mmenu"
Will work fine.
If you really want to use
class="moo_mmenu"
(and I really don't think you do.) you can do this...If you need to get the
li
elements directly from theroot
var you can do.