如何在等宽字体中显示字符串?
使用 JavaScript fixed() 方法显示等宽字体,如同使用 <tt> 标记一样。
示例
你可以尝试运行以下代码以在等宽字体中显示字符串。
<html> <head> <title>JavaScript String fixed() Method</title> </head> <body> <script> var str = new String("Hello world"); alert(str.fixed()); </script> </body> </html>
广告