JavaScript字符串 – 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>