Jquery UI手风琴:不了解如何更新内容

时间:2014-04-15 15:13:54

标签: javascript jquery jquery-ui jquery-ui-accordion

我有一个简单的手风琴有两节。单击按钮后,我想在当前激活的部分中插入一些文本。我的研究一直建议我找到活动窗格使用:

 var active = $(".selector").accordion("option", "active");

我知道.selector是一个类,但它来自哪里,为什么我在Chrome调试器中看不到它?为什么$(“#accordion”)。手风琴不适合这里呢?

假设这是正确的,为什么我不能简单地在当前窗格中附加

active.append("<p>test</p>").accordion('destroy').accordion();

完整代码:

<html lang="en">

<head>
    <meta charset="utf-8">
    <title>jQuery UI Accordion - Default functionality</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
    <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
    <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
    <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
    <script>

        $(function () {
            $("#accordion").accordion();
        });

        $(document).ready(function () {

            $("#addBeer").click(function () {
                var active = $(".selector").accordion("option", "active");
                active.append("<p>test</p>").accordion('destroy').accordion();

            });
        });
    </script>
</head>

<body>
    <div>

        <input id="addBeer" type="button" name="addBeer" value="Beer">
    </div>

    <div id="accordion">
        <h3>Section 1</h3>
        <div>
            <p>
                Paragraph 3
            </p>
            <ul>
                <li>List item one</li>
                <li>List item two</li>
                <li>List item three</li>
            </ul>
        </div>
        <h3>Section 4</h3>
        <div>
            <p>
                Paragraph 4</p>

        </div>
    </div>
</body>

</html>

1 个答案:

答案 0 :(得分:0)

比我之前写的更好的方式。

EDITED

JSfiddle:http://jsfiddle.net/fS6zT/

$( "#insert" ).click( function() { //inserts text to active panel
       var changetothis = $( "#something" ).val();

        n = $("#accordion h3").index($("#accordion h3.ui-state-active"));
         // alert(n); // test active number
        var section = n+1;
        $("#"+section).html(changetothis);
    });

在小提琴中有一个注释函数,其中包含一些可用于此的额外元素,但它们并不是必需的。上面显示的未注释的功能就是您所需要的。