JavaScript 字符串 small() 方法
页面下方有更多实例。
定义和用法
small() 方法不是标准的,可能无法在所有浏览器中按预期工作。
small() 方法用于以小字体显示字符串。
此方法返回嵌入在 <small> 标签中的字符串,如下所示:
<small>string</small>
浏览器支持
方法 | |||||
---|---|---|---|---|---|
small() | Yes | Yes | Yes | Yes | Yes |
语法
string.small()
参数
None. |
技术细节
返回值: | <small> 标签中嵌入的字符串 |
---|---|
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.w3ccoo.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
亲自试一试 »
❮ JavaScript 字符串参考