我正在使用扩展插件(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/ 。
如果有任何提示我将如何解决这个问题,我将不胜感激。
谢谢。
答案 0 :(得分:0)
$("your_selector").expandAll('shown');
完成工作。
$(function () {
$(your_selector_to_expand).expandAll('shown');
});