扫码一下
查看教程更方便
sup() 方法用于把字符串显示为上标。
该方法返回加入 the <sup> 标签的字符串, 如下:
<sup>string</sup>
语法如下:
string.sup()
返回带有 <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>