window.onload = function(){
        var print = function(a){
          var d = document.createElement("div");
          d.innerHTML = a
          document.body.appendChild(d)
        }
        Deferred.loop(10,function(i){
          print(i)
        });
        Deferred.loop(10,function(i){
          print(String.fromCharCode(i+97));
        });
      }

相关文章:

  • 2021-12-26
  • 2021-07-16
  • 2022-02-25
  • 2021-10-02
  • 2021-11-30
  • 2021-11-30
  • 2021-05-24
  • 2022-12-23
猜你喜欢
  • 2021-11-24
  • 2022-03-10
  • 2021-07-16
  • 2021-08-09
  • 2021-12-02
  • 2021-05-17
  • 2021-11-01
相关资源
相似解决方案