为了账号安全,请及时绑定邮箱和手机立即绑定

自己的代码

<style>
 .none{
       display:none;
  }
</style>
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script>
   function Aclick(){
    var text =$("#a1").text();
     if (text == "更多")
     {
       $("#a1").html("简化");
       $("li.none").show();
      }
    else {
          $("#a1").html("更多");
          $("li.none").hide();
        }
  }
</script>
</head>
<body>
   <ul>
      <li>1</li>
      <li>2</li>
      <li>3</li>
      <li>4</li>
      <li class="none">7</li>
      <li class="none">8</li>
   </ul>
<a href="#" id="a1" onclick="Aclick()">更多</a>
</body>

正在回答

1 回答

   $("li.none").show();这种写法错误,   $(".none").show();就好

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

自己的代码

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信