你好,我在 zk 项目上工作的一切,我需要将计时器的“延迟”值发送到 Jquery 函数,我尝试使用 EL,但它似乎不适用于我,这是我的代码,可以你帮我好吗?(我没有jquery经验)
<zk>
<html>
<div id="countdown1"></div><br></br>
<label id="here" >${refreshTimer.deplay}</label>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery.timeTo.min.js"></script>
<script>
$('#countdown1').timeTo({
seconds: Number($('#here').text())/10000,// i want to insert a the delay of timer here.
theme: "black",
fontSize: 20
});
</script>
</html>
</zk>