String.prototype.italics()
已废弃: 该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。
The italics()
method creates an <i>
HTML element that causes a string to be italic.
Syntax
str.italics()
Description
The italics()
method embeds a string in an <i>
tag: "<i>str</i>"
.
Examples
Using italics()
The following example uses string methods to change the formatting of a string:
var worldString = 'Hello, world'; console.log(worldString.blink()); // Hello, world
console.log(worldString.bold()); // Hello, world
console.log(worldString.italics()); //Hello, world
console.log(worldString.strike()); // Hello, world
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) String.prototype.italics |
Standard | Initial definition. Implemented in JavaScript 1.0. Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers. |
ECMAScript (ECMA-262) String.prototype.italics |
Living Standard | Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers. |
浏览器兼容性
BCD tables only load in the browser