我需要在他成功制作的每一滴上更新用户的积分,但由于某种原因,$ .ajax呼叫似乎无法正常工作...... 我使用$('#userPoints')。val()获得当前积分,然后我想对当前数字进行每次加法或设置第一个得分 - 如果......其他。 有什么帮助吗?
function Point(){
var phpPoints = $('#userPoints').val();
if (phpPoints != null) {
var Usrpoints = phpPoints + 5;
} else {
var Usrpoints = 5;
}
alert('Points: '+phpPoints);
var sndData = { acts:'Points', points: Usrpoints };
$.ajax({ // begin add ajax
type: "POST",
url: "game/lib/updateGame.php",
dataType:"html",
cache: false,
data: sndData,
success: function(sndData) {
$('div#UpdateUser').html(sndData).fadeIn('slow');
}
}); // end ajax
}
答案 0 :(得分:0)
此处代替td使用您要删除的元素
$('td')。bind('drop stop',function(){Point(); });