已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。
blink()
方法创建使字符串闪烁的 <blink>
HTML 元素。
警告:闪烁文本被多种普及标准否决。 <blink>
元素自身是非标准的,并且已废弃!
语法
str.blink()
返回值
包含 <blink>
HTML 元素的字符串。
描述
blink()
方法将字符串嵌入 <blink>
标签中: "<blink>str</blink>"
.
示例
使用blink()函数
下面的示例使用了字符串方法来修改字符串格式:
var worldString = 'Hello, world'; console.log(worldString.blink()); // <blink>Hello, world</blink> console.log(worldString.bold()); // <b>Hello, world</b> console.log(worldString.italics()); // <i>Hello, world</i> console.log(worldString.strike()); // <strike>Hello, world</strike>
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) String.prototype.blink |
Standard | 初始定义。在 JavaScript 1.0 中实现。 在(规范性)附件 B 中定义了用于 Web 浏览器的 ECMAScript 附加特性。 |
ECMAScript Latest Draft (ECMA-262) String.prototype.blink |
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) |