Jquery手风琴改变活动不会开火

Sea*_*ean 2 javascript jquery events accordion

这不起作用:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <link rel="stylesheet" type="text/css" href="css/smoothness/jquery-ui-1.10.1.custom.css" />
    <script type="text/javascript" src="js/jquery-1.9.1.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.10.1.custom.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {

            $("#accordion").accordion({
                change: function (event, ui) { alert('test'); }
            });

        });
    </script>

</head>
<body>


    <div id="accordion">
        <h2><a href="#">Header1</a></h2>
        <div>
            <p>content 1</p>
        </div>
        <h2><a href="#">Header2</a></h2>
        <div>
            <p>content 2</p>
        </div>
    </div>


</body>
</html>
Run Code Online (Sandbox Code Playgroud)

Fré*_*idi 17

accordion小部件不会change在最新版本的jQuery UI中公开事件.

您可以绑定到activate事件:

$("#accordion").accordion({
    activate: function(event, ui) {
        alert(ui.newHeader.text());  // For instance.
    }
});
Run Code Online (Sandbox Code Playgroud)