blob: ee4133a0da7fc5059c2f4b79760d010965894c6a (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
---
title: GlobalEventHandlers.onblur
slug: Web/API/GlobalEventHandlers/onblur
tags:
- API
- HTML DOM
- Propriedade
- Referencia
translation_of: Web/API/GlobalEventHandlers/onblur
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>The <strong>onblur</strong> property returns the onBlur event handler code, if any, that exists on the current element.</p>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox">element.onblur = function;
</pre>
<ul>
<li><code>function</code> é o nome de uma função definida pelo usuário, sem o sufixo () ou qualquer parâmetro, ou uma declaração de função anônima, como por exemplo</li>
</ul>
<pre class="syntaxbox">element.onblur = function() { console.log("evento onblur detectado!"); };
</pre>
<h2 id="Exemplo">Exemplo</h2>
<pre class="brush: html"><html>
<head>
<title>exemplo de evento onblur</title>
<script type="text/javascript">
var elem = null;
function initElement()
{
elem = document.getElementById("foo");
// NOTA: doEvent(); ou doEvent(param); NÃO irão funcionar aqui.
// Deve ser uma referência ao nome da função, não à chamada da função.
elem.onblur = doEvent;
};
function doEvent()
{
elem.value = 'Tchauzinho';
console.log("Evento onblur detectado!")
}
</script>
<style type="text/css">
<!--
#foo {
border: solid blue 2px;
}
-->
</style>
</head>
<body onload="initElement();">
<form>
<input type="text" id="foo" value="Olá!" />
</form>
<p>Clique no elemento acima para dá-lo focus, depois clique fora do elemento.<br /> Recarregue a pagina através do NavBar.</p>
</body>
</html>
</pre>
<h2 id="Notas">Notas</h2>
<p>O evento blur aparece quando um elemento perde o focus.</p>
<p>Em contraste cp, MSIE--O qual faz quase todos os elementos receberem o evento blur--quase todos os elementos em navegadores baseados no Gecko NÃO funcionam com este evento.</p>
<h2 id="Especificações">Especificações</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onblur','onblur')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
|