如何將超級菜單懸停更改爲點擊?如何更改大型菜單懸停在小屏幕尺寸點擊?
$(function() {
$(".dropdown").hover(
function() {
$('.dropdown-menu', this).stop(true, true).fadeIn("slow");
$(this).toggleClass('open');
},
function() {
$('.dropdown-menu', this).stop(true, true).fadeOut("slow");
$(this).toggleClass('open');
});
});
我改變.hover到。點擊,但它不工作。
你能提供JSFIDDLE嗎? –
我是新來的,不知道該怎麼做。 – Ezatla