JavaScript String sup() 方法
描述
该方法以上标的形式显示字符串,就像它在<sup>
标签中一样。
语法
其语法如下所示 –
string.sup( )
返回值
以<sup>
标签返回字符串。
示例
尝试以下示例。
<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>
输出
<sup>Hello world</sup>