我有一个包含 23 个不同 .html 文件的池,我需要随机访问它们。这部分很简单,但我需要他们在显示 40 个这些页面后链接到不同的页面。我怎样才能做到这一点?
var startTime = new Date();
Mousetrap.bind('e', function () {
var endTime = new Date();
var timeSpent = (endTime - startTime);
alert("Correct " + timeSpent + "miliseconds");
window.location.href = loft;
})
Mousetrap.bind('i', function() {
var endTime = new Date();
var timeSpent = (endTime - startTime);
$('img').css('display','block')
alert("Incorrecto " + timeSpent + "milisegundos");
})
var loft= Math.floor((Math.random()*40)+1);
Mousetrap 是一个 js 库,它允许我将击键链接到不同的功能。这是关于反应时间的社会心理学研究。