<JavaScript String Riferimento
Esempio
Visualizzare una stringa ha colpito-out:
var str = "Hello World!";
var result = str.strike();
Prova tu stesso " Più "Try it Yourself" esempi di seguito.
Definizione e l'utilizzo
Lo strike() metodo viene utilizzato per visualizzare una stringa che viene depennata.
Questo metodo restituisce la stringa incorporato nel <strike> tag, in questo modo:
<Strike> stringa </ strike>
Il <strike> tag non è supportato in HTML5. Utilizzare invece CSS.
Supporto browser
Metodo | |||||
---|---|---|---|---|---|
strike() | sì | sì | sì | sì | sì |
Sintassi
parametri Nessuna.
Dettagli tecnici
Valore di ritorno: Una stringa incorporato nel <strike> tag Versione JavaScript: 1.0
Altri esempi
Esempio
Una dimostrazione di metodi correlati:
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>");
Prova tu stesso "
<JavaScript String Riferimento