如果需要显示的元素是悬停的子元素,这可以在 CSS 中轻松完成,但事实并非如此;它位于文档的不同部分。
我试图在将鼠标悬停在“[+]”元素上时显示菜单。
Jfiddle:http: //jsfiddle.net/bUqKq/5/
jQuery:
$(document).ready(function(){
$("header[role='masthead'] #container #left nav#static span").hover(
function(){$("header[role='masthead'] nav#active").show();},
);
});