我一直在研究一个 jquery 滑块,一旦单击记录,它就会滑出,然后当你单击关闭时,它会滑出屏幕。我最初遇到的问题是,如果我单击记录两次,它会尝试加载相同的信息最重要的是它自己并创建了一堆错误..所以我找到了一些代码,我可以用它来删除所有数据,然后将滑块窗格移回屏幕上,我遇到的问题是它会像我不会的那样擦除所有细节但是滑块窗格根本不动我只把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>