首先,我是一个完整的 jquery 入门者,我需要修改脚本。现在我有子菜单,当我打开它并打开链接时,它会崩溃,我想要的是当我打开子菜单项链接时,页面重新加载时子菜单仍然会打开,是否可能
这是我正在使用的菜单脚本的链接http://thecodeplayer.com/walkthrough/vertical-accordion-menu-using-jquery-css3
/*jQuery time*/
$(document).ready(function(){
$("#accordian h3").click(function(){
//slide up all the link lists
$("#accordian ul ul").slideUp();
//slide down the link list below the h3 clicked - only if its closed
if(!$(this).next().is(":visible"))
{
$(this).next().slideDown();
}
})
})