我是javascript的初学者,发现很难启用切换功能,其中全部展开和全部折叠都是一个按钮
请问这个jsfiddle例子可以帮助我吗?
<div id="sidetreecontrol"><a href="?#">Collapse All</a> | <a href="?#">Expand All</a>
由于
答案 0 :(得分:1)
在#sidetreecontrol
中添加第三个链接以获得“切换”控件:
<div id="sidetreecontrol">
<a href="#">Collapse All</a>
|
<a href="#">Expand All</a>
|
<a href="#">Toggle All</a>
</div>
演示:http://jsfiddle.net/DTxJT/1/
如果您不想使用Collapse All
和Expand All
链接,请使用CSS隐藏它们:
<div id="sidetreecontrol">
<a href="#" class="hidden">Collapse All</a>
<a href="#" class="hidden">Expand All</a>
<a href="#">Toggle All</a>
</div>
其中:
.hidden {display: none;}
演示:http://jsfiddle.net/DTxJT/2/
我找不到您正在使用的plugin的选项文档,否则我会链接到它。