Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.strike()

Wycofywany
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

Podsumowanie

Powoduje, iż łańcuch zostanie wyświetlony przekreślony, tak jakby był wewnątrz znacznika <strike>.

Składnia

str.strike()

Opis

The strike() method embeds a string in a <strike> tag: "<strike>str</strike>".

Przykłady

Przykład: Zastosowanie metody strike()

Następujący przykład stosuje metodę string do zmiany formatowania łańcucha znakowego:

var worldString="Witaj, Świecie";

console.log(worldString.blink());   // <blink>Witaj, Świecie</blink>
console.log(worldString.bold());    // <bold>Witaj, Świecie</bold>
console.log(worldString.italics()); // <i>Witaj, Świecie</i>
console.log(worldString.strike());  // <s>Witaj, Świecie</s>

Zobacz także

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, Mgjbot, Ptak82
 Ostatnia aktualizacja: teoli,