<!DOCTYPE html><html>? ? <head>? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />? ? ? ? <title>挑戰(zhàn)題</title>? ? ? ? ?<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>? ? </head>? ? <ul>? ? ? ? <li>1</li>? ? ? ? <li>2</li>? ? ? ? <li>3</li>? ? ? ? <li>4</li>? ? ? ? <li style="display:none">5</li>? ? ? ? <li style="display:none">6</li>? ? ? ? <li>7</li>? ? ? ? <li>8</li>? ? </ul>? ? <a href="javascript:;" class="ca">更多</a>? ? <body>? ??<script type="text/javascript">? ? ? ? ? ? $(function(){? ? ? ? ? ? ? ? $(".ca").click(function(){? ? ? ? ? ? ? ? var ca=$(".ca").text()? ? ? ? ? ? ? ? if(ca==="更多")? ? ? ? ? ? ? ? {$(".ca").html("簡化");? ? ? ? ? ? ? ? ?$("li[style='display:none']").show();? ? ? ? ? ? ? ? }else{? ? ? ? ? ? ? ? ? ?$(".ca").html("更多");? ? ? ? ? ? ? ? ? ?$("li[style!='display:none']").show();? ? ? ? ? ? ? ? }? ? ? ? ? ? ? ? });? ? ? ? ? ? })? ? ? ? </script>? ? ? ??? ? </body></html>