0

好吧,尽管如此,我的问题可能是微不足道的:

要设置手风琴以适应其内容文档是这样说的:

$( ".selector" ).accordion({ heightStyle: "content" });

我可以在元素本身中这样做吗?这就是我想做的:

<div id="accordion" style="heightStyle: 'content';" >
4

1 回答 1

3

不,这不是样式元素,它是一个 jQuery 参数。该参数允许jQuery accordian库以某种方式运行。

这只是执行的一些代码,只是简单地更改值:

if (heightStyle === "fill") {
    maxHeight = parent.height();
    this.element.siblings(":visible").each(function () {
        var elem = $(this),
            position = elem.css("position");

        if (position === "absolute" || position === "fixed") {
            return;
        }
        maxHeight -= elem.outerHeight(true);
    });

    this.headers.each(function () {
        maxHeight -= $(this).outerHeight(true);
    });

    this.headers.next()
        .each(function () {
        $(this).height(Math.max(0, maxHeight -
            $(this).innerHeight() + $(this).height()));
    })
        .css("overflow", "auto");
} else if (heightStyle === "auto") {
    maxHeight = 0;
    this.headers.next()
        .each(function () {
        maxHeight = Math.max(maxHeight, $(this).css("height", "").height());
    })
        .height(maxHeight);
}
于 2013-04-05T22:38:46.523 回答