Contoh
Menampilkan string dalam font kecil:
var str = "Hello World!";
var result = str.small();
Cobalah sendiri " Lebih "Try it Yourself" contoh di bawah ini.
Definisi dan Penggunaan
The small() metode tidak standar, dan mungkin tidak bekerja seperti yang diharapkan di semua browser.
The small() metode yang digunakan untuk menampilkan string dalam font kecil.
Metode ini mengembalikan string tertanam dalam <small> tag, seperti ini:
<Small> String </ small>
Dukungan Browser
metode | |||||
---|---|---|---|---|---|
small() | iya nih | iya nih | iya nih | iya nih | iya nih |
Sintaksis
parameter Tidak ada.
Rincian teknis
Kembali Nilai: Sebuah string tertanam dalam <small> tag Versi JavaScript: 1.0
Contoh lebih
Contoh
Sebuah demonstrasi metode terkait:
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>");
Cobalah sendiri "
<JavaScript String Referensi