更多“试一试”的例子。
定义和用法
该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的字符串引用