1、描述
这个方法使字符串显示为上标,就像它在<sup>
标记中一样。
2、语法
它的语法如下:
string.sup( )
3、返回值
返回<sup>
标记字符串。
4、使用示例
<html> <head> <title>JavaScript String sup() Method</title> </head> <body> <script type = "text/javascript"> var str = new String("Hello world"); alert(str.sup()); </script> </body> </html>
5、输出
<sup>Hello world</sup>