我有一个弹出窗口,它在胡佛请求来自服务器的数据以显示。然而,我可以防止多个弹出窗口的唯一方法是使用同步 ajax。我知道如果永远不会使用同步 ajax,那么应该很少使用。这可以异步完成吗?我只是在学习需要回调,并且感觉它们是相关的。谢谢
(function( $ ){
$.fn.screenshotPreview = function() {
xOffset = 20;
yOffset = 10;
this.hover(function(e) {
$.ajax({
url: 'getPopup.php',
success: function(data)
{
$("body").append('<div id="screenshot">dl><dt>Name:</dt><dd>'+data.name+'</dd><dt>User Name:</dt><dd>'+data.username+'</dd></dl></div>');
$("#screenshot")
.css("top",(e.pageY - yOffset) + "px")
.css("left",(e.pageX + xOffset) + "px")
.fadeIn("fast");
},
async: false,
dataType: 'json'
});
},
function() {
$("#screenshot").remove();
});
this.mousemove(function(e) {
$("#screenshot").css("top",(e.pageY - yOffset) + "px").css("left",(e.pageX + xOffset) + "px");
});
};
})( jQuery );