更多"Try it Yourself"下面的例子。
定义和用法
该small()方法不标准,并预期在所有的浏览器可能无法正常工作。
的small()方法被用来显示在一个小字体的字符串。
此方法返回嵌入在字符串<small>标签,这样的:
<小>字符串</小>
浏览器支持
方法 | |||||
---|---|---|---|---|---|
small() | 是 | 是 | 是 | 是 | 是 |
句法
参数 没有。
技术细节
返回值: 嵌入在一个字符串<small>标签 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字符串参考