我有这段代码:
$(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>");
});
}
});
}
});
});
通过此链接,它会更新数据库并显示新的问题和答案。
<a href="" title="up" class="vote1" id="<?php echo $id_pregunta."-".$id_respuesta; ?>-1" name="mod_up">Accept</a>
但如果我在Accept的链接中再次单击,则只显示gif()并且不会更新数据库,也不会显示新的问题和答案。
我如何使用.live()?或.delegate()?或者我需要什么?
答案 0 :(得分:9)
我更喜欢.delegate。这是一篇关于.delegate和.live的有趣文章:
http://www.alfajango.com/blog/the-difference-between-jquerys-bind-live-and-delegate/
以下是您需要做的事情:
$(document).ready(function()
{
$(document).delegate('.vote, .vote1', 'click', function()
{
//code
});
});
答案 1 :(得分:4)
使用jQuery
live
代替click
。
$(".vote, .vote1").live('click', function(){
.......
......
});