0

私は、レコードがクリックされるとスライドアウトし、次に閉じるをクリックすると画面からスライドして戻るjqueryスライダーに取り組んでいます。最初に発生した問題は、レコードを2回クリックすると、同じ情報をロードしようとすることでした。その上に、エラーの山ができました。すべてのデータを削除し、スライダーペインを画面上に戻すために使用できるコードを見つけました。問題は、すべての詳細をワイプすることですが、スライダーペインがまったく動かない私はここにjavascriptコードを置いて、コードのどこが間違っているのか、可能であれば修正する方法を誰かに教えてもらえるかどうかを確認しました...

    function deleteParentElement(){
         $(this).parent().animate({right:-1000});    // on its own as an onlcick event 
attached to the button it works on its own the pane its moving class is called "details"
         $('.student').remove()   //the class defined in here is only the div containing the data
         e.stopPropagation()
    }

これは、機能をトリガーするために使用されるボタンです

<button style="position: absolute; top:40px; right:25px;" href="#" id="bt-close" class="<? echo $Stu_id;?>" onClick="deleteParentElement()">Close</button>
4

1 に答える 1

0

2 つのセミコロンと

$(document).ready(function(){
//the rest of the code
});

...それはおそらくあなたの問題です

于 2012-10-11T01:53:49.670 に答える