123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var pro1 = new Promise(function(resolve,reject){
- setTimeout(function(){
- // resolve("成功了");
- reject();
- },1000)
- })
- pro1.then(function(res){
- console.log(res);
- }).catch(function(){
- console.log("失败了");
- })
- </script>
- </body>
- </html>
|