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