JavaScript small() 方法
定义和用法
small() 方法用于把字符串显示为小号字。
语法
stringObject.small()
实例
在本例中,"Hello world!" 将显示为小号字:
<script type="text/javascript"> var str="Hello world!" document.write(str.small()) </script>
TIY
- small()
- 如何使用 small() 把字符串显示为小号字。
small() 方法用于把字符串显示为小号字。
stringObject.small()
在本例中,"Hello world!" 将显示为小号字:
<script type="text/javascript"> var str="Hello world!" document.write(str.small()) </script>