Lea*_*Lea 0 html javascript jquery
我不知道为什么这不起作用,并且由于我有限的jquery能力,我无法找到问题的根源.下面的脚本删除所有内容,而不仅仅是父元素.
我很欣赏这方面的一些帮助.
谢谢,Lea
脚本:
// Delete post
$('a.delete').livequery("click", function(e){
if(confirm('Are you sure you want to delete this post?')==false)
return false;
e.preventDefault();
var parent = $('a.delete').parent();
var temp = parent.attr('id').replace('record-','');
var main_tr = $('#'+temp).parent();
$.ajax({
type: 'get',
url: 'delete.php?id='+ parent.attr('id').replace('record-',''),
data: '',
beforeSend: function(){
},
success: function(){
parent.fadeOut(200,function(){
main_tr.remove();
});
}
});
});
Run Code Online (Sandbox Code Playgroud)
标记:
<span id="posting">
<div class="friends_area" id="record-23">
<img src="temp/user_icon.gif" style="width: 50px; height: 48px; float: left;" alt="">
<label style="float: left;" class="name">
<b>99Points</b>
<em>ry ewst yewsrtg eswtg</em>
<br clear="all">
<span style="font-weight: normal;">
9 minutes ago
</span>
<a href="javascript: void(0)" id="post_id23" class="showCommentBox">Comments</a>
</label>
<a style="display: none;" href="#" class="delete"> Remove</a>
<br clear="all">
<div id="CommentPosted23">
</div>
<div class="commentBox" id="commentBox-23" style="display: none;" align="right">
<img src="small.png" class="CommentImg" style="float: left;" alt="" width="40">
<label id="record-23">
<textarea class="commentMark" id="commentMark-23" name="commentMark" cols="60"></textarea>
<div>Write a comment... </div></label>
<br clear="all">
<a id="SubmitComment" class="smallbutton"> Comment</a>
</div>
</div>
<div class="friends_area" id="record-22">
<img src="temp/user_icon.gif" style="width: 50px; height: 48px; float: left;" alt="">
<label style="float: left;" class="name">
<b>99Points</b>
<em>hywr ywerywersywrsey ry r</em>
<br clear="all">
<span style="font-weight: normal;">
9 minutes ago
</span>
<a href="javascript: void(0)" id="post_id22" class="showCommentBox">Comments</a>
</label>
<a style="display: none;" href="#" class="delete"> Remove</a>
<br clear="all">
<div id="CommentPosted22">
</div>
<div class="commentBox" id="commentBox-22" style="display: none;" align="right">
<img src="small.png" class="CommentImg" style="float: left;" alt="" width="40">
<label id="record-22">
<textarea style="overflow: hidden; color: rgb(51, 51, 51);" class="commentMark" id="commentMark-22" name="commentMark" cols="60"></textarea>
<div style="position: absolute; display: none; font-weight: 400; width: 300px; font-family: monospace; line-height: 14px; font-size: 11px; padding: 0px;">Write a comment... </div></label>
<br clear="all">
<a id="SubmitComment" class="smallbutton"> Comment</a>
</div>
</div>
<div id="bottomMoreButton">
<a id="more_10" class="more_records" href="javascript: void(0)">Older Posts</a>
</div>
</span>
Run Code Online (Sandbox Code Playgroud)
使用$(this)而不是类选择器:).现在您要删除该类的所有项目.
var parent = $(this).parent();
Run Code Online (Sandbox Code Playgroud)
另外,要小心你不能$(this)在ajax调用中使用(因为它会引用ajax调用),所以你(不小心?)通过将它存储在变量中并且调用.remove()它来做正确的事情.