我在google上搜索了很多,没有找到一个可靠的。这就是我问这个问题的原因。
我正在动态创建 aiframe
和 a 中的 iframe div
。
我需要显示并开始TIMER
计数,从[00:00:00]开始,格式为[hh:mm:ss],在我JSP
完全加载后。
所以我使用了以下plugin
http://tutorialzine.com/2012/09/count-up-jquery/
但它在IE中对我不起作用,在chrome和firefox中起作用。只有我收到警报消息。除了什么都没发生。我的 JSP 代码是,
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script src="js/jquery-1.9.1.js"></script>
<script src="js/assets/countup/jquery.countup.js"></script>
<script type="text/javascript">
$(function() {
alert("DOM loaded");
$('#countdown').countup();
});
</script>
</head>
<body>
<h2>Timer is :</h2>
<p id="countdown"></p>
</body>
</html>
我不知道为什么这对我不起作用。
我的需要:
我需要显示并开始
TIMER
计数,从[00:00:00]开始,格式为[hh:mm:ss],在 IE 中以指定格式完全加载 DOM 之后。或者建议我做任何其他事情来使这个场景有效。
希望我们的堆栈用户能帮助我。