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