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