我有一个jquery函数可以删除内容并切换twitter bootstrap上的按钮,然后在该按钮切换后,如果你点击它,它会回到删除内容,但它不起作用。请帮忙。谢谢!
$('#btnAdd').click(function () {
$(".RemoveSettings").remove();
$(this).toggleClass('displaying');
$('#removedcontent').show();
});
$('#removedcontent').click(function () {
$('#removedcontent').remove();
$(".RemoveSettings").show();
});
答案 0 :(得分:2)
您正在删除元素,如果删除元素则无法显示它们。
将remove()
改为hide()
替换。
$('#btnAdd').click(function () {
$(".RemoveSettings").hide();
$(this).toggleClass('displaying');
$('#removedcontent').show();
});
$('#removedcontent').click(function () {
$('#removedcontent').hide();
$(".RemoveSettings").show();
});