//让 hover 可以触发dropdown
$("#header .nav .dropdown").on("mouseover", function() {
if ($(this).is(".open")) {
return;
}
$(this).find("> a").dropdown("toggle");
})
$("#header .nav .dropdown").on("mouseout", function() {
$(this).removeClass("open");
})