Jquery .show按钮不起作用

时间:2013-08-16 01:18:53

标签: javascript jquery html twitter-bootstrap dom-manipulation

我有一个jquery函数可以删除内容并切换twitter bootstrap上的按钮,然后在该按钮切换后,如果你点击它,它会回到删除内容,但它不起作用。请帮忙。谢谢!

$('#btnAdd').click(function () {
    $(".RemoveSettings").remove();
    $(this).toggleClass('displaying');
    $('#removedcontent').show();
});
$('#removedcontent').click(function () {
    $('#removedcontent').remove();
    $(".RemoveSettings").show();
});

1 个答案:

答案 0 :(得分:2)

您正在删除元素,如果删除元素则无法显示它们。

remove()改为hide()替换。

$('#btnAdd').click(function () {
    $(".RemoveSettings").hide();
    $(this).toggleClass('displaying');
    $('#removedcontent').show();
});
$('#removedcontent').click(function () {
    $('#removedcontent').hide();
    $(".RemoveSettings").show();
});