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