Tanımı ve Kullanımı
bold() metodu standart değildir ve tüm tarayıcılarda beklendiği gibi çalışmayabilir.
bold() metodu kalın bir dize görüntülemek için kullanılır.
Bu yöntem gömülü dize döndürür <b> böyle etiketi,:
<B> dize </ b>
Tarayıcı Desteği
Yöntem | |||||
---|---|---|---|---|---|
bold() | Evet | Evet | Evet | Evet | Evet |
Sözdizimi
Parametreler Yok.
Teknik detaylar
Geri dönüş değeri: Gömülü bir dize <b> 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