我正在使用以下代码与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);
如果有人可以提供帮助,请告诉我,谢谢
答案 0 :(得分:2)
使用jQuery(...)
代替$jQuery(...)
。或者,您可以$jQuery
创建jQuery
作为$jQuery = jQuery.noConflict()
的别名:(jQuery)
另外,请删除代码末尾的{{1}} - 它不会执行任何操作。