JavaScript字符串 – fixed()方法
描述
这个方法会将一个字符串显示为定宽字体,就好像在标签中一样。
语法
它的语法如下:
string.fixed()
返回值
返回带有标签的字符串。
示例
尝试以下示例。
<html>
<head>
<title>JavaScript字符串fixed()方法</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fixed());
</script>
</body>
</html>
输出
<tt>Hello world</tt>