运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到空间
<!DOCTYPE html> <html> <body> <h1>JavaScript Promise Object</h1> <h2>The Promise.reject() Method</h2> <p id="demo"></p> <script> // Create a Promise Object let myPromise = Promise.reject("Not Allowed"); // Using then() myPromise.then(x => myDisplay(x), x => myDisplay(x)); // Funtion to run when Promise is settled: function myDisplay(some) { document.getElementById("demo").innerHTML = some; } </script> </body> </html>