我试图通过 Jquery Accordion 创建评论框。但我不知道如何清楚地删除项目。删除后内容为空
请告诉我解决方案!
这是我的代码:
//accordion
$(".questions").accordion({
event : "click hoverintent",
header : "> div > h3",
collapsible : true,
autoHeight : true,
autoActivate : true
});
//button remove click handle
$(".bt_remove").click(function() {
var parent = $(this).closest('div');
var head = parent.prev('h3');
parent.add(head).fadeOut('fast', function(){
$(this).remove();
});
});
//html结构
<div>
<h3>Question 2. My Second Question ?</h3>
<div>
Second content <input class="bt_remove" type="button" value="remove" />
</div>
</div>
<div>
<h3>Question 3. My Third Question ?</h3>
<div>
Third content <input class="bt_remove" type="button" value="remove" />
</div>
</div>
任何帮助!谢谢。