<script type="text/javascript">

var j = 1;
        var timeID = null;
        function display() {
            timeID = window.setInterval("delay()", 1000);
        }
        function delay() {
            if (j < 1000) {
                $("#txtId").attr("value",j);
              
                j++;
            }
            else {
                window.clearInterval(timeID);
            }
        }
        display();

</script>

相关文章:

  • 2021-05-26
  • 2021-12-09
  • 2022-12-23
  • 2021-11-19
  • 2021-08-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
  • 2021-12-04
  • 2022-02-26
相关资源
相似解决方案