search

Home  >  Q&A  >  body text

jq2 里没有toggle方法了,有什么好的替代吗

jq2 里没有toggle方法了,有什么好的替代吗???

phpcn_u274phpcn_u2742855 days ago1170

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:00:48

    There is no toggle method in jq2. Is there any good alternative? - PHP Chinese website Q&A - There is no toggle method in jq2. Is there any good alternative - PHP Chinese website Q&A

    Take a look around. Study it.

    reply
    0
  • 阿神

    阿神2017-02-03 17:00:52

    官方没有说去掉 toggle() 和 toggleClass() 啊,只说了在 3.0 中不再使用 .toggleClass( [state ] ) 这个签名(仅这个签名) 的函数。

    就 toggle() 来说,主要是用于显示或隐藏,可以自己判断,调用 show() 或者 hide() 的

    var $node = ...;
    
    if ($node.is(":hidden")) {
        $node.show();
    } else {
        $node.hide();
    }

    reply
    0
  • Cancelreply