所以我创建了一个相当简单的调查,有一些网站。我想测量用户在每个页面上花费的时间。使用Java脚本测量时间本身相当简单。但是有没有办法在输出csv中包含带有测量时间的变量?
我尝试使用JQuery覆盖默认属性来创建一个CML Text以在其中写入值,但该变量未写入文本域。
相关的HTML代码:
<cml:text label="Zeit:" default = "0" aggregation="all" id = "TimePage1"></cml:text>
相关的JQuery:
$("#nextButton").click(function() {
//determine the time
time2 = performance.now()
timeDiffinSec = (time2-time1)/1000;
timeArray[currentPage-1] = timeArray[currentPage-1] + timeDiffinSec;
//alert( timeArray[currentPage-1]);
//add time to the CML element here
$("#TimePage1").attr("default", timeArray[currentPage-1]);
//$("#TimePage1").html(" <cml:text label='Zeit:' default = '0' aggregation='all' id = 'TimePage1'></cml:text>");
//change page
currentPage++;
updatePage();
});