Örnek
yeşil renkte metni görüntülemek:
var str = "Hello World!";
var result = str.fontcolor("green");
Kendin dene " Daha "Try it Yourself" Aşağıdaki örnekler.
Tanımı ve Kullanımı
fontcolor() yöntemi standart değildir ve tüm tarayıcılarda beklendiği gibi çalışmayabilir.
fontcolor() yöntemi, belirtilen renkte bir dizi görüntülemek için kullanılır.
Bu yöntem gömülü dize döndürür <font> böyle etiketi,:
<font color = "colorvalue"> dize </ font>
<font> etiketi HTML5 desteklenmez. CSS yerine kullanın.
Tarayıcı Desteği
Yöntem | |||||
---|---|---|---|---|---|
fontcolor() | Evet | Evet | Evet | Evet | Evet |
Sözdizimi
Parametre Değerleri Parametre Açıklama color Gereklidir. Bir renk değeri. Değeri bir renk adı olabilir (eg red) , bir RGB değeri (eg rgb(255,0,0) ) ya da bir altıgen numarası (eg #FF0000) e
Teknik detaylar
Geri dönüş değeri: Gömülü bir dize <font> etiketi JavaScript Versiyon: 1.0
Diğer Örnekler
Örnek
İlgili yöntemlerin bir gösteri:
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>");
Kendin dene "
<JavaScript dize Referans