Jquery 到 Mootools
尝试让这个(简单!)jQuery 表达式在 Mootools Jquery 中工作
:
checkCurrentModule = function(){
jQuery(".module ul li.current").prepend("<b class='arrow'></b>");
};
这是我在 Mootools 中的尝试
var checkCurrentModule = function(){
var injectModuleli = $$("li.current");
var currentArrow = new Element("<b class='arrow'></b>");
currentArrow.inject(injectModuleli);
};
Trying to get this (simple!) jQuery expression to work in Mootools
Jquery:
checkCurrentModule = function(){
jQuery(".module ul li.current").prepend("<b class='arrow'></b>");
};
And here is my attempt at it in Mootools
var checkCurrentModule = function(){
var injectModuleli = $("li.current");
var currentArrow = new Element("<b class='arrow'></b>");
currentArrow.inject(injectModuleli);
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
提供一个单行解决方案,并且不依赖于 mootools-more:(
我只是将其添加为评论,但我还不允许这样做。)
To provide a solution as one-liner and with no dependency to mootools-more:
(I would just have added this as a comment, but i am not yet allowed to.)
工作示例: http://jsfiddle.net/NGjgV/
Working example: http://jsfiddle.net/NGjgV/
我不太熟悉 mootools,但我相信以下代码可以满足您的要求:
I'm not really familiar with mootools, but I believe the following code does what you want: