JavaScript fixed() 方法

定义和用法

fixed() 方法用于把字符串显示为打字机字体。

语法

stringObject.fixed()

实例

在本例中,"Hello world!" 将被显示为打字机文本:

<script type="text/javascript">

var str="Hello world!"
document.write(str.fixed())

</script>

TIY

fixed()
如何使用 fixed() 把字符串显示为打字机字体。