在我的客户页面上,我想在每次用户点击某些东西时执行我的功能。函数将此元素标签名称发送到数据库。为了避免覆盖我使用的客户端页面点击事件处理程序mousedown
。我的想法:
jQuery('body').on('mousedown', function(event){
var that = event.target,
thatTag = event.target.nodeName;
jQuery.get(
"http://example.com",
{ parameter: thatTag },
function() {
//It hasn't time to execute, because mouseup is auto executed and click action change location (if I click anchor)
}
);
});
那么,是否有任何选项可以暂停/阻止mouseup
/click
直到我的 GET 操作完成?