我将以下代码与 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);
请告诉我是否有人可以提供帮助,谢谢