Örnek
Üst simge metin olarak bir dize görüntüler:
var str = "Hello World!";
var result = str.sup();
Kendin dene " Daha "Try it Yourself" Aşağıdaki örnekler.
Tanımı ve Kullanımı
sup() yöntemi standart değildir ve tüm tarayıcılarda beklendiği gibi çalışmayabilir.
sup() metodu üst simge metin olarak bir dizi göstermek için kullanılır.
Bu yöntem gömülü dize döndürür <sup> böyle etiketi,:
<Sup> dize </ sup>
Tarayıcı Desteği
Yöntem | |||||
---|---|---|---|---|---|
sup() | Evet | Evet | Evet | Evet | Evet |
Sözdizimi
Parametreler Yok.
Teknik detaylar
Geri dönüş değeri: Gömülü bir dize <sup> 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