我有这个代码:
jQuery(document).ready(function(){
$('caption').click(function() {
$(this).nextAll().toggle('slow');
return false;
});
});
如何在下次打开之前关闭手风琴元素?
答案 0 :(得分:0)
你的意思是这样吗?
jQuery(document).ready(function(){
$('caption').nextAll().hide(); -- This hides the content when dom is ready
$('caption').click(function() {
$(this).nextAll().toggle('slow');
return false;
});
});