Jquery expandAll - 默认情况下无法展开

时间:2014-08-27 11:03:58

标签: jquery expand

我正在使用扩展插件(http://www.adipalaz.com/experiments/jquery/expand.html)。问题是我无法将内容设置为默认扩展。

我用过两个..

  • $.fn.expandAll.defaults.state = "shown";
  • $.fn.expandAll.defaults.initTxt = "hide";

..方法和直接在脚本文件中更改默认值:

(...)
$.fn.expandAll.defaults = {
state : 'shown', // If 'hidden', the collapsible elements are hidden by default, else they are expanded by default 
initTxt : 'hide', // 'show' - if the initial text of the switch is for expanding, 'hide' - if the initial text of the switch is for collapsing
(...)

..但它不起作用,内容仍然隐藏。我找到了一个类似问题的小提琴: http://jsfiddle.net/wLEGS/22/

如果有任何提示我将如何解决这个问题,我将不胜感激。

谢谢。

1 个答案:

答案 0 :(得分:0)

$("your_selector").expandAll('shown');完成工作。

$(function () {
    $(your_selector_to_expand).expandAll('shown');
});

请看这里:http://jsfiddle.net/wLEGS/23/