blob: 62467f37c6650d2f2b8f59025797ce559255b0d2 (
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
67
68
|
---
title: String.prototype.italics()
slug: Web/JavaScript/Reference/Global_Objects/String/italics
tags:
- Descontinuado
- JavaScript
- Prototipo
- String
- italics()
- metodo
translation_of: Web/JavaScript/Reference/Global_Objects/String/italics
---
<div>{{JSRef}} {{deprecated_header}}</div>
<p>O método <code>italics()</code> cria um elemento HTML <code><a href="https://wiki.developer.mozilla.org/pt-BR/docs/Web/HTML/Element/i" title="https://wiki.developer.mozilla.org/pt-BR/docs/Web/HTML/Element/i"><i></a></code> que faz com que uma string fique em itálico.</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox notranslate"><code><var>str</var>.italics()</code></pre>
<h3 id="Valor_retornado">Valor retornado</h3>
<p>Uma string contendo um elemento HTML <code><a href="https://wiki.developer.mozilla.org/pt-BR/docs/Web/HTML/Element/i" title="https://wiki.developer.mozilla.org/pt-BR/docs/Web/HTML/Element/i"><i></a></code>.</p>
<h2 id="Descrição">Descrição</h2>
<p>O método <code>italics()</code> cria uma string dentro de uma tag <code><i></code>:<br>
<code>"<i>str</i>"</code>.</p>
<h2 id="Exemplos">Exemplos</h2>
<h3 id="Usando_italics">Usando <code>italics()</code></h3>
<p>O exemplo a seguir usa métodos do objeto global String para alterar a formatação de uma 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.italics', 'String.prototype.italics')}}</td>
</tr>
</tbody>
</table>
<h2 id="Navegadores_compatíveis">Navegadores compatíveis</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("javascript.builtins.String.italics")}}</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.strike()")}}</li>
</ul>
|