这段JS代码如何优化?
functionmouse_over(){$(document).ready(function(){$("#s1").hover(function(){timer=set...
function mouse_over() {
$(document).ready(function () {
$("#s1").hover(function () {
timer = setTimeout(function () {
$(".abstract1").show("slow");
}, 700)
}, function () {
$(".abstract1").hide("slow");
clearTimeout(timer);
});
$("#s2" ).hover(function () {
timer = setTimeout(function () {
$(".abstract2").show("slow");
}, 700)
},function () {
$(".abstract2").hide("slow");
clearTimeout(timer);
});
$("#s3" ).hover(function () {
timer = setTimeout(function () {
$(".abstract3").show("slow");
}, 700)
},function () {
$(".abstract3").hide("slow");
clearTimeout(timer);
});
$("#s4" ).hover(function () {
timer = setTimeout(function () {
$(".abstract4").show("slow");
}, 700)
},function () {
$(".abstract4").hide("slow");
clearTimeout(timer);
});
$("#s5" ).hover(function () {
timer = setTimeout(function () {
$(".abstract5").show("slow");
}, 700)
},function () {
$(".abstract5").hide("slow");
clearTimeout(timer);
});
$("#s6" ).hover(function () {
timer = setTimeout(function () {
$(".abstract6").show("slow");
}, 700)
},function () {
$(".abstract6").hide("slow");
clearTimeout(timer);
});
$("#s7" ).hover(function () {
timer = setTimeout(function () {
$(".abstract7").show("slow");
}, 700)
},function () {
$(".abstract7").hide("slow");
clearTimeout(timer);
});
});
} 展开
$(document).ready(function () {
$("#s1").hover(function () {
timer = setTimeout(function () {
$(".abstract1").show("slow");
}, 700)
}, function () {
$(".abstract1").hide("slow");
clearTimeout(timer);
});
$("#s2" ).hover(function () {
timer = setTimeout(function () {
$(".abstract2").show("slow");
}, 700)
},function () {
$(".abstract2").hide("slow");
clearTimeout(timer);
});
$("#s3" ).hover(function () {
timer = setTimeout(function () {
$(".abstract3").show("slow");
}, 700)
},function () {
$(".abstract3").hide("slow");
clearTimeout(timer);
});
$("#s4" ).hover(function () {
timer = setTimeout(function () {
$(".abstract4").show("slow");
}, 700)
},function () {
$(".abstract4").hide("slow");
clearTimeout(timer);
});
$("#s5" ).hover(function () {
timer = setTimeout(function () {
$(".abstract5").show("slow");
}, 700)
},function () {
$(".abstract5").hide("slow");
clearTimeout(timer);
});
$("#s6" ).hover(function () {
timer = setTimeout(function () {
$(".abstract6").show("slow");
}, 700)
},function () {
$(".abstract6").hide("slow");
clearTimeout(timer);
});
$("#s7" ).hover(function () {
timer = setTimeout(function () {
$(".abstract7").show("slow");
}, 700)
},function () {
$(".abstract7").hide("slow");
clearTimeout(timer);
});
});
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询