JavaScript String blink() 方法
-
JavaScript String blink() 方法
blink()方法不是标准方法,并且可能无法在所有浏览器中按预期工作。blink()方法用于显示闪烁的字符串。此方法返回嵌入在<blink>标记中的字符串,如下所示:<blink>字符串</blink>HTML<blink>标记已过时。实例:显示闪烁的文字:
尝试一下var str = "Hello World!"; var result = str.blink();
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 方法 blink() 不支持不支持不支持不支持不支持,v12.0- -
语法
string.blink() -
参数值
参数 描述 没有 -
技术细节
项目 描述 返回值: 嵌入在<blink>标记中的字符串 JavaScript版本: ECMAScript 1 -
更多例子
相关方法的演示:
尝试一下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("https://www.w3schools.com") + "</p>"); document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");