JavaScript String 对象
big() 方法用于把字符串显示为大号字体。
stringObject.big()
在本例中,"Hello world!" 将被显示为大号字体:
<script type="text/javascript"> var str="Hello world!" document.write(str.big()) </script>
Search: