Contoh
Menampilkan teks dalam warna hijau:
var str = "Hello World!";
var result = str.fontcolor("green");
Cobalah sendiri " Lebih "Cobalah Sendiri" contoh di bawah ini.
Definisi dan Penggunaan
The fontcolor() metode tidak standar, dan mungkin tidak bekerja seperti yang diharapkan di semua browser.
The fontcolor() metode yang digunakan untuk menampilkan string dalam warna tertentu.
Metode ini mengembalikan string tertanam dalam <font> tag, seperti ini:
<font color = "colorvalue"> String </ font>
The <font> tag tidak didukung di HTML5. Gunakan CSS sebagai gantinya.
Dukungan Browser
metode | |||||
---|---|---|---|---|---|
fontcolor() | iya nih | iya nih | iya nih | iya nih | iya nih |
Sintaksis
string.fontcolor(" color ")
Nilai parameter
Parameter | Description |
---|---|
color | Required. A color value. The value can be a color name (e.g. red), an RGB value (e.g. rgb(255,0,0)), or a hex number (e.g. #FF0000)e |
Rincian teknis
Kembali Nilai: | Sebuah string tertanam dalam <font> 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