En son web geliştirme öğreticiler
 

JavaScript sicim strike() Method

<JavaScript dize Referans

Örnek

Bir vurdu aşımı dize görüntüler:

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

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


Tanımı ve Kullanımı

strike() metodu dışarı vurdu bir dize görüntülemek için kullanılır.

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

<Strike> dize </ strike>

<strike> etiketi HTML5 desteklenmez. CSS yerine kullanın.


Tarayıcı Desteği

Yöntem
strike() Evet Evet Evet Evet Evet

Sözdizimi

Parametreler
Yok.

Teknik detaylar

Geri dönüş değeri: Gömülü bir dize <strike> 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