最新的Web開發教程
 

JavaScript眨眼的字符串()方法

JavaScript的字符串引用 JavaScript的字符串引用

顯示閃爍文字:

var str = "Hello World!";
var result = str.blink();
試一試»

更多“試一試”的例子。


定義和用法

blink()方法不規範,並預期在所有瀏覽器可能無法正常工作。

blink()方法被用來顯示一個閃爍的字符串。

此方法返回嵌入在字符串<blink>標籤,就像這樣:

<閃爍>字符串</閃爍>

在HTML <blink>標籤是過時的


瀏覽器支持

在表中的數字指定完全支持方法的第一個瀏覽器的版本。

方法
blink() 不支持 不支持 不支持 不支持 過時訴15
12

句法

string.blink()

參數

沒有。

技術細節

返回值: 嵌入在一個字符串<blink>標記
JavaScript的版本: 1.0

例子

更多示例

相關方法的演示:

var txt = "Hello World!";

document.write("The original string: " + txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small: " + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() + "</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
試一試»

JavaScript的字符串引用 JavaScript的字符串引用