Contoh
Menampilkan string memukul-out:
var str = "Hello World!";
var result = str.strike();
Cobalah sendiri " Lebih "Try it Yourself" contoh di bawah ini.
Definisi dan Penggunaan
The strike() metode yang digunakan untuk menampilkan string yang menyerang.
Metode ini mengembalikan string tertanam dalam <strike> tag, seperti ini:
<Strike> String </ strike>
The <strike> tag tidak didukung di HTML5. Gunakan CSS sebagai gantinya.
Dukungan Browser
metode | |||||
---|---|---|---|---|---|
strike() | iya nih | iya nih | iya nih | iya nih | iya nih |
Sintaksis
parameter Tidak ada.
Rincian teknis
Kembali Nilai: Sebuah string tertanam dalam <strike> tag Versi JavaScript: 1.0
Contoh lebih
Contoh
Sebuah demonstrasi metode terkait:
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>");
Cobalah sendiri "
<JavaScript String Referensi