离开页面时将一些数据写入DB

时间:2014-12-04 10:03:50

标签: jquery

我想在用户关闭或离开页面时将一些数据写入SQL-DB。这可能吗?

$(window).on('beforeunload', function(){
    if ($('#target').length) {
        $.ajax({
            url: "/script.php",
            type: "POST",
            data: { 'anthing': 'write' },
            dataType: "json"
        });
        alert('leave it');
    }
});

此尝试不起作用......

0 个答案:

没有答案