Chaîne JavaScript - méthode strike ()
La description
Cette méthode entraîne l'affichage d'une chaîne sous forme de texte barré, comme s'il s'agissait d'une balise <strike>.
Syntaxe
Sa syntaxe est la suivante -
string.strike( )
Valeur de retour
Renvoie la chaîne avec la balise <strike>.
Exemple
Essayez l'exemple suivant.
<html>
<head>
<title>JavaScript String strike() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.strike());
</script>
</body>
</html>
Production
<strike>Hello world</strike>