1

コンテンツを削除し、twitter ブートストラップのボタンをトグルする jquery 関数があります。そのボタンがトグルされた後、クリックすると削除されたコンテンツに戻ると思われますが、機能していません。助けてください。ありがとうございました!

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

1 に答える 1

2

要素を削除しています。削除すると表示できません。

を代わりにremove()sに置き換えます。hide()

$('#btnAdd').click(function () {
    $(".RemoveSettings").hide();
    $(this).toggleClass('displaying');
    $('#removedcontent').show();
});
$('#removedcontent').click(function () {
    $('#removedcontent').hide();
    $(".RemoveSettings").show();
});
于 2013-08-16T01:20:55.273 に答える