代码如下 请老师指教 效果出不来
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>挑战题</title>
</head>
<body>
<ul>
<li>q</li>
<li>w</li>
<li>e</li>
<li>r</li>
<li>a</li>
<li class="why" style="display:none">l</li>
<li class="why" style="display:none">m</li>
<li class="why" style="display:none">n</li>
</ul>
<a href="#">gengudo</a>
<script>
$("a").toggle(function(){
$(".why").show();
$("a").html("yincang");
return false;
}
.function(){
$(".why").hide();
$("a").html("xianshi");
return false;
});
</script>
</body>
</html>