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