Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jquery hover顶部导航栏菜单
</title>
<script type="text/javascript" src="http://ku.shouce.ren/libs/jquery/1/jquery1.8.0.min.js">
</script>
</head>
<body>
<div class="hd-main clearfix" id="header">
<a class="logo" href="">
</a>
<div class="navs">
<a class="def-nav" href="">主页
xxxxxxxxxx
@charset "utf-8";
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,figure{
margin:0;
padding:0}
html{
background-color:#e9ecec}
table{
table-layout:fixed;
border-collapse:collapse}
section,article,aside,header,footer,nav,dialog,figure{
display:block}
.clearfix:after{
content:"\20";
display:block;
height:0;
$(document).ready(function(){
$(".def-nav,.info-i").hover(function(){
$(this).find(".pulldown-nav").addClass("hover");
$(this).find(".pulldown").show();
}
,function(){
$(this).find(".pulldown").hide();
$(this).find(".pulldown-nav").removeClass("hover");
);