gpt4 book ai didi

javascript - 如何扩展 jQuery Accordion 插件

转载 作者:可可西里 更新时间:2023-11-01 02:38:49 26 4
gpt4 key购买 nike

如何扩展 jQuery 插件?

目前我正在使用 multiopen accordion插件。

我需要添加新功能,例如展开/折叠完成后我需要回调函数,例如 jquery ui Accordion 插件中的更改事件。

如何在此插件中添加此功能。

最佳答案

你不需要 Accordion 小部件。你可以用几行 jQuery 来做到这一点。

html:

<h3 class="header"> Title 1 </h3>
<div class="content"> Content 1 </div>
<h3 class="header"> Title 2 </h3>
<div class="content"> Content 2 </div>

javascript/jQuery:

( function( $ ){ // closure to make sure jQuery = $
$( function(){ // on document load
$( ".header" ).click( function( e ){ // select headers and set onClick event handler
// here you can maybe add a class to an opened header like this
$( this ).toggleClass( "open" );
$( this ).next().toggle( "slow", function(){ // toggle visibility
// what you write here will be executed after the animation
// "this" will refer to the hidden/revealed div element
// if you want to call a function depending on if the
// panel was opened or closed try this
if ( $( this ).is( ":visible" ) ) {
tabOpened( e, this );
} else {
tabClosed( e, this );
}
})
}).next().hide()
})
})(jQuery)

整个事情都在 jsfiddle 上工作 http://jsfiddle.net/qpqL9/

关于javascript - 如何扩展 jQuery Accordion 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13769215/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com