jq2 里没有toggle方法了,有什么好的替代吗
phpcn_u274
phpcn_u274 2017-02-03 16:59:21
0
2
1166

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

phpcn_u274
phpcn_u274

reply all(2)
数据分析师

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.

阿神

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

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

var $node = ...;

if ($node.is(":hidden")) {
    $node.show();
} else {
    $node.hide();
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template