当我点击上一页的按钮时,我想打开一个。
这是代码Fiddle
$(document).ready(function () {
if (window.location.hash) {
$(window.location.hash).show(); // <--this should work now.
}
$("h3.open-close").click(function () {
if ($(this).is(".current")) {
$(this).removeClass("current");
$(this).next(".desc").slideToggle(400);
} else {
$(".desc").slideUp(4.00);
$("h3.open-close").removeClass("current");
$(this).addClass("current");
$(this).next(".desc").slideToggle(400);
}
});
});