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