0

你好,我在 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>
4

1 回答 1

1

我没有尝试过,但据我记得,我有同样的问题,直到我$('#here').text()改变$('#here').val()

于 2014-06-08T19:15:48.550 回答