small() 方法用于把字符串显示为小号字。
stringObject.small()
在本例中,"Hello world!" 将显示为小号字:
<html><body><script type="text/javascript">var str="Hello world!"document.write(str.small())</script></body></html>
<html>
<body>
<script type="text/javascript">
var str="Hello world!"
document.write(str.small())
</script>
</body>
</html>