26_promise.html 559 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. var pro1 = new Promise(function(resolve,reject){
  11. setTimeout(function(){
  12. // resolve("成功了");
  13. reject();
  14. },1000)
  15. })
  16. pro1.then(function(res){
  17. console.log(res);
  18. }).catch(function(){
  19. console.log("失败了");
  20. })
  21. </script>
  22. </body>
  23. </html>