String.prototype.sub() - JavaScript 编辑
已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。
sub()
方法创建一个 <sub>
HTML 元素,使字符串展示为下标。
语法
str.sub()
返回值
包含<sub>
HTML 元素的字符串。
描述
sub()
方法将字符串嵌入<sub>
标签: "<sub>str</sub>"
.
示例
使用sub()和sup()方法
下面的示例使用了sub()
和sup()
方法来格式化字符串:
var superText = 'superscript';
var subText = 'subscript';
console.log('This is what a ' + superText.sup() + ' looks like.');
// 这就是<sup>superscript</sup>的样子。
console.log('This is what a ' + subText.sub() + ' looks like.');
// 这就是<sub>subscript</sub>的样子。
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) String.prototype.sub | Standard | 初始定义。在 JavaScript 1.0 中实现。在(规范性)附件 B 中定义为用于 Web 浏览器的 ECMAScript 附加特性。 |
ECMAScript Latest Draft (ECMA-262) String.prototype.sub | Draft | 在(规范性)附件 B 中定义为用于 Web 浏览器的 ECMAScript 附加特性。 |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.7 or earlier) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
另见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论