Derniers tutoriels de développement web
 

JavaScript Chaîne strike() Method

<JavaScript Chaîne Référence

Exemple

Afficher une chaîne frappé out:

var str = "Hello World!";
var result = str.strike();
Essayez vous - même »

Plus "Try it Yourself" - "Try it Yourself" exemples ci - dessous.


Définition et utilisation

La strike() méthode est utilisée pour afficher une chaîne qui est radiée.

Cette méthode retourne la chaîne intégrée dans la <strike> balise, comme ceci:

<Strike> string </ strike>

La <strike> balise est pas prise en charge HTML5. Utilisez CSS à la place.


Support du navigateur

méthode
strike() Oui Oui Oui Oui Oui

Syntaxe

Paramètres
Aucun.

Détails techniques

Valeur de retour: Une chaîne intégrée dans la <strike> tag
JavaScript Version: 1.0

Exemples

autres exemples

Exemple

Une démonstration de méthodes connexes:

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>");
Essayez vous - même »

<JavaScript Chaîne Référence