Commit 63265310 by dhn

底部箭头

parent 2193b327
...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
var dis = $(this).siblings("ul").css("display"); var dis = $(this).siblings("ul").css("display");
if (dis == "none"){ if (dis == "none"){
$(this).siblings("ul").css("display","block"); $(this).siblings("ul").css("display","block");
$(this).children("span").html('^') $(this).children("strong").html('^')
}else{ }else{
$(this).siblings("ul").css("display","none"); $(this).siblings("ul").css("display","none");
$(this).children("span").html('>') $(this).children("strong").html('>')
} }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment