有没有办法根据自定义属性comment_id删除DIV?
我有以下代码,但它还没有完成。
<script type="text/javascript">
$('.delete_comment').live('click', function() {
// Url we request data from
$.get( "http://www.site.com/pages/delete/user_comment.php",
// Url parameters to send
{id:$(this).attr('comment_id'),c:'yes'},
// Output data from php file generated by PHP echo.
function(data)
{
var comment_id = $(this).attr('comment_id').val();
//alert(comment_id);
if (comment_id == data) {
$(this).remove();
}
});
});
</script>
答案 0 :(得分:34)
是的,可能
http://api.jquery.com/category/selectors/
http://api.jquery.com/jQuery.each/
$('div[comment_id="value"]').remove();