En son web geliştirme öğreticiler
 

JavaScript sicim small() Method

<JavaScript dize Referans

Örnek

Küçük bir yazı bir dize görüntüler:

var str = "Hello World!";
var result = str.small();
Kendin dene "

Daha "Try it Yourself" Aşağıdaki örnekler.


Tanımı ve Kullanımı

small() metodu standart değildir ve tüm tarayıcılarda beklendiği gibi çalışmayabilir.

small() metodu küçük yazı bir dizi görüntülemek için kullanılır.

Bu yöntem gömülü dize döndürür <small> böyle etiketi,:

<Small> dize </ small>


Tarayıcı Desteği

Yöntem
small() Evet Evet Evet Evet Evet

Sözdizimi

Parametreler
Yok.

Teknik detaylar

Geri dönüş değeri: Gömülü bir dize <small> etiketi
JavaScript Versiyon: 1.0

Örnekler

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