运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript String Methods</h1> <h2>The sup() Method</h2> <p id="demo1"></p> <p>The sup() method is deprecated in JavaScript.</p> <p>Use the sub tag instead:</p> <p id="demo2"></p> <script> let text = "Hello World!"; let result = text.sup(); document.getElementById("demo1").innerHTML = text + " " + result; result = "<sup>Hello World!</sup>" document.getElementById("demo2").innerHTML = text + " " + result; </script> </body> </html>