哪位同学有空帮我看看哈,选择器的练习题不会了
<!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>无标题文档</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>