扫码一下
查看教程更方便
fixed() 方法用于把字符串显示为打字机字体。
该方法返回加了 <tt> 标签的字符串, 如下所示:
<tt>string</tt>
语法如下:
string.fixed()
返回带有<tt>标签的字符串。
所有主流浏览器都支持 fixed 方法。
<html>
<head>
<title>JavaScript String fixed() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fixed());
</script>
</body>
</html>
输出结果:
<tt>Hello world</tt>