本文介绍了问题.live和Ajax的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个code:

$(document).ready(function() 
{
    $(".vote, .vote1").click(function()
    {
        var id = $(this).attr("id");
        var name = $(this).attr("name");
        var dataString = 'id='+ id ;
        var parent = $(this);

        if(name=='mod_up')
        {
            $(this).fadeIn(200).html('<img src="dot.gif" align="absmiddle">');
            $.ajax({
                type: "POST",
                url: "mod_up_vote.php",
                dataType: "xml",
                data: dataString,
                cache: false,
                success: function(xml)
                {
                    //$("#mod-pregunta").html(html);
                    //$("#mod-respuesta").html(html);
                    //parent.html(html);
                    $(xml).find('pregunta').each(function()
                    {
                        var id = $(this).attr('id');
                        var pregunta = $(this).find('preguntadato').text();
                        var respuesta = $(this).find('respuestadato').text();
                        var votoup = $(this).find('votoup').text();
                        var votodown = $(this).find('votodown').text();
                        var id_pregunta = $(this).find('id_pregunta').text();
                        var id_respuesta = $(this).find('id_respuesta').text();
                        $("#mod-pregunta").html(pregunta);
                        $("#mod-respuesta").html(respuesta);
                        $(".vote1").html("<a href=\"\" title=\""+ id_pregunta + "-"+ id_respuesta + "-1\" class=\"vote1\" id=\""+ id_pregunta + "-"+ id_respuesta + "-1\" name=\"mod_up\">Aceptar</a>");
                    });
                }
            });
        }
    });
});

通过这个链接,它更新数据库,并显示一个新的问题和答案。

With this link, It update the database and show a new question and answer.

<a href="" title="up" class="vote1" id="<?php echo $id_pregunta."-".$id_respuesta; ?>-1" name="mod_up">Accept</a>

但是,如果我点击一次在接受的链接仅显示GIF(),不更新数据库,并且不显示新的问题和放大器;答案

But if I click one more time in Accept's link only shows the gif () And doesn't update the database and doesn't show the new question&answer.

我该怎么使用.live()?或.delegate()?或者我需要什么?

How must I use .live()? or .delegate()? or what i need?

推荐答案

我preFER .delegate。这里有一个关于.delegate和.live一篇有趣的文章:

I prefer .delegate. Here's an interesting article about .delegate and .live:

下面也就是你需要做的:

Here's also what you need to do:

$(document).ready(function() 
{
    $(document).delegate('.vote, .vote1', 'click', function()
    {
        //code
    });
});

这篇关于问题.live和Ajax的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 12:26