W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <p>Click the button to return the highest number of 5 and 10.</p> <button onclick="myFunction()">试一试</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML = Math.max(5, 10); } </script> </body> </html>