元素能隱藏,但是顯示不出來
<!DOCTYPE html>
<html>
? ? <head>
? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
? ? ? ? <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
? ? ? ? <title>挑戰(zhàn)題</title>
? ? </head>
? ??
? ? <body>
? ? ? ? <ul>
? ? ? ? ? ? <li>01</li>
? ? ? ? ? ? <li>02</li>
? ? ? ? ? ? <li>03</li>
? ? ? ? ? ? <li>04</li>
? ? ? ? ? ? <li>05</li>
? ? ? ? ? ? <li>06</li>
? ? ? ? ? ? <li class="hide">07</li>
? ? ? ? ? ? <li class="hide">08</li>
? ? ? ? </ul>
? ? ? ? <a href="javascript:;">更多</a>
? ? ? ? <script>
? ? ? ? ? ??
? ? ? ? ? ? $("li[class='hide']").hide();
? ? ? ? ? ? $("a").click=function(){
? ? ? ? ? ? ? ? if($("a").html()=="更多"){
? ? ? ? ? ? ? ? ? ? $("a").html("簡(jiǎn)化");
? ? ? ? ? ? ? ? ? ? $("li[class='hide']").show();
? ? ? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? ? ? $("a").html("更多");
? ? ? ? ? ? ? ? ? ? $("li[class='hide']").hide();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? ? ??
? ? ? ? ? ?
? ? ? ??
? ? ? ? </script>
? ? </body>
</html>
07 08號(hào)元素能夠隱藏,但是點(diǎn)"更多"怎么都顯示不出來,請(qǐng)大神幫我看一下,謝謝!
2016-03-28
點(diǎn)擊事件用$("a").click(function())