我想在用户关闭或离开页面时将一些数据写入SQL-DB。这可能吗?
$(window).on('beforeunload', function(){
if ($('#target').length) {
$.ajax({
url: "/script.php",
type: "POST",
data: { 'anthing': 'write' },
dataType: "json"
});
alert('leave it');
}
});
此尝试不起作用......