运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <h1>JavaScript Crypto API</h1> <h2>The crypto.getRandomValues() Method</h2> <p id="demo"></p> <script> const myArray = new Uint32Array(10); let text = ""; crypto.getRandomValues(myArray); for (const num of myArray) { text += num + "<br>" } document.getElementById("demo").innerHTML = text; </script> </body> </html>