哪位同學(xué)有空幫我看看哈,選擇器的練習(xí)題不會了
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標(biāo)題文檔</title>
</head>
<body>
<script>
? ? ? ? ?function change(){
? ? ? ? ? ? if($("a").html()=="更多"){
? ? ? ? ? ? ? ? $("a").html("簡化");
? ? ? ? ? ? ? ? $("li:hidden").show();
? ? ? ? ? ? }
? ? ? ? ? ? else{
? ? ? ? ? ? ? ? $("a").html("更多");
? ? ? ? ? ? ? ?$("li:gt(4)").hide();
? ? ? ? ? ? }
} ?
</script>
<ul>
? ? <li>1</li>
? ? ? ? <li>2</li>
? ? ? ? <li>3</li>
? ? ? ? <li>4</li>
? ? ? ? <li>5</li>
? ? ? ? <li style="display:none">6</li>
? ? ? ? <li style="display:none">7</li>
? ? ? ? <li style="display:none">8</li>
? ? ? ? <li style="display:none">9</li>
? ? ?</ul>
? ? ?<a href="javascript:change()">更多</a>
</body>
</html>