gpt4 book ai didi

java - J2EE 中的倒计时器

转载 作者:行者123 更新时间:2023-12-01 13:47:23 25 4
gpt4 key购买 nike

我正在使用 J2EE 开发一个在线考试项目,我想放置一个倒计时器,它允许用户查看时间提交考试前剩下的时间..实现这一点最有效的方法是什么?我发现可以使用 Javascript 制作一个。但是,JAVA 中有可用的 API 吗???另外还有其他方法吗?

我现在拥有的倒计时器数据是时间间隔或应该递减到0的开始时间。

int time

最佳答案

What is the most efficient way implementing this?

将 JQuery ajaxsetInterval 结合使用。不需要服务器端计时器来显示倒计时。看看下面的示例。

        $(document).ready(function() {
var time=100;
setInterval(updateActiveStatus, 1000);

function updateActiveStatus() {
console.log('Count down call');
time=time-1;
if(time==0){
// Lock the exam by hide or display none.
}
$.ajax({
url: "Servlet", // Call Servlet if any server side update needed.
success: function(data, textStatus, jqXHR) {

$('#countdownDiv').html(time);

}
});
}
});

关于java - J2EE 中的倒计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20259372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com