jQuery的toggle事件

Posted 幽默是一种心情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery的toggle事件相关的知识,希望对你有一定的参考价值。

$(function () {
    //默认隐藏
   $("#SelTime").hide();
  $("#SeniorSel").toggle(
       function () {
         $("#SelTime").show();
       },
      function () {
        $("#SelTime").hide();
      }
  );
});

以上是关于jQuery的toggle事件的主要内容,如果未能解决你的问题,请参考以下文章

jquery动态live绑定toggle事件

jquery toggle()方法 语法

Toggle jQuery 实时事件中的问题

jquery 中toggle的2种用法

jQuery--bind()hover()toggle()

jQuery hover()方法和jQuery toggle()方法用法示例