0

我将以下代码与 jQuery 一起使用,该代码有效

$('.s_switcher').hover(function() {
   $(this).find('.s_options').stop(true, true).slideDown('fast');
},function() {
   $(this).find('.s_options').stop(true, true).slideUp('fast');
});

更换代码并添加MooTools和Jquery后,没有结果,代码也不起作用。

//no conflict jquery
jQuery.noConflict();
//jquery stuff
 $jQuery('.s_switcher').hover(function() {
        $jQuery(this).find('.s_options').stop(true, true).slideDown('fast');
 },function() {
        $jQuery(this).find('.s_options').stop(true, true).slideUp('fast');
})(jQuery);

请告诉我是否有人可以提供帮助,谢谢

4

1 回答 1

2

使用jQuery(...)而不是$jQuery(...). 或者您可以创建$jQuery一个别名,jQuery如下所示:$jQuery = jQuery.noConflict().
此外,在代码末尾删除(jQuery)- 它不会做任何事情。

于 2012-08-14T12:51:58.467 回答