我试图存储点击次数和访问者在网站上花费的时间的数据
我使用这个 ajax 调用将数据发送到我的 php 文件。
window.onbeforeunload = function(){
var endTime = new Date();
var timeSpent = (endTime - startTime);
$.ajax({
url: baseUrl + siteDir + pathToDataXml,
type: "POST",
datatype: "html",
data: 'time='+timeSpent+'&clicks='+count,
})
return "Thank You For Participating";
}
当新记录被输入数据库时,ajax 调用正在命中 php 文件,但记录是空白的。
任何建议都会很棒