当用户通过以下代码进行某些平衡时,我使用json发送数据。
console.log(" Ajax post");
$.ajax({
url: 'https://www.abc123.com/xyz',
type: 'POST',
dataType: 'json',
data: {
"md" : qm["nd"],
"url" : ngurl,
"data" : sendpts
},
success: function(a){
console.log("success");
console.log(a.message);
},
error: function(request, status, error) {
console.log("error");
}
});
当网页关闭时,有没有办法发送json数据? 以及网页关闭的通知?