blob: 890938382b2aeea0a596e4b5e839b5710824c604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
---
title: String.prototype.strike()
slug: Web/JavaScript/Reference/Global_Objects/String/strike
tags:
- Descontinuado
- JavaScript
- Prototipo
- String
- metodo
- strike()
translation_of: Web/JavaScript/Reference/Global_Objects/String/strike
---
<div>{{JSRef}} {{deprecated_header}}</div>
<p>O método <code>strike()</code> cria um elemento HTML <code><a href="https://wiki.developer.mozilla.org/en-US/docs/Web/HTML/Element/strike"><strike></a></code> que faz com que uma string seja exibida com o texto riscado.</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox notranslate"><code><var>str</var>.strike()</code></pre>
<h3 id="Valor_retornado">Valor retornado</h3>
<p>Uma string contendo um elemento HTML <code><a href="https://wiki.developer.mozilla.org/en-US/docs/Web/HTML/Element/strike"><strike></a></code>.</p>
<h2 id="Descrição">Descrição</h2>
<p>O método <code>strike()</code> cria uma string dentro uma tag <code><strike></code>: "<code><strike>str</strike></code>".</p>
<h2 id="Exemplos">Exemplos</h2>
<h3 id="Usando_strike">Usando <code>strike()</code></h3>
<p>O exemplo a seguir usa métodos do objeto global String para alterar a formatação da string:</p>
<pre class="brush: js notranslate">var worldString = 'Olá, mundo';
console.log(worldString.blink()); // <blink>Olá, mundo</blink>
console.log(worldString.bold()); // <b>Olá, mundo</b>
console.log(worldString.italics()); // <i>Olá, mundo</i>
console.log(worldString.strike()); // <strike>Olá, mundo</strike>
</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-string.prototype.strike', 'String.prototype.strike')}}</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>
<p>{{Compat("javascript.builtins.String.strike")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{jsxref("String.prototype.blink()")}}</li>
<li>{{jsxref("String.prototype.bold()")}}</li>
<li>{{jsxref("String.prototype.italics()")}}</li>
</ul>
|