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