mirror of
https://gitee.com/lvyeyou/DaShuJuZhiDaPingZhanShi.git
synced 2025-06-17 06:55:26 +08:00
37 lines
656 B
JavaScript
37 lines
656 B
JavaScript
$(function () {
|
|
$(".header_nav>ul>li>a").on("click",function () {
|
|
$(this).addClass("nav_current").parent("li").siblings("li").children("a").removeClass("nav_current");
|
|
})
|
|
|
|
$(".header_nav>ul>li").hover(function () {
|
|
$(this).children("ul").toggle();
|
|
})
|
|
|
|
$(".header>.header_nav>ul>li>ul>li").hover(function () {
|
|
$(this).children("ul").toggle();
|
|
})
|
|
|
|
|
|
|
|
|
|
$("#add_ipt").on("click",function () {
|
|
$('#modal_add').modal();
|
|
})
|
|
|
|
|
|
$("#date_ipt").on("click",function () {
|
|
$('#myModal').modal();
|
|
})
|
|
|
|
$("#video_ipt").on("click",function () {
|
|
$('#Modal').modal();
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|