Skip to content

Commit 9039293

Browse files
Merge pull request #167 from yy34/patch-6
Events: change, input, cut, copy, paste
2 parents 967272f + e17cd53 commit 9039293

File tree

1 file changed

+7
-7
lines changed
  • 2-ui/4-forms-controls/3-events-change-input

1 file changed

+7
-7
lines changed

2-ui/4-forms-controls/3-events-change-input/article.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Events: change, input, cut, copy, paste
1+
# Olaylar: change, input, cut, copy, paste
22

3-
Let's discuss various events that accompany data updates.
3+
Hadi veri güncellemelerine eşlik eden çeşitli olayları tartışalım.
44

5-
## Event: change
5+
## Olay: change
66

7-
The [change](http://www.w3.org/TR/html5/forms.html#event-input-change) event triggers when the element has finished changing.
7+
[change olayı](http://www.w3.org/TR/html5/forms.html#event-input-change) öğe değişmeyi bitirdiğinde tetiklenir.
88

9-
For text inputs that means that the event occurs when it loses focus.
9+
Bu olay metin girişleri için odak kaybedildiği zaman meydana gelir.
1010

11-
For instance, while we are typing in the text field below -- there's no event. But when we move the focus somewhere else, for instance, click on a button -- there will be a `change` event:
11+
Örneğin, aşağıdaki metin alanına birşey yazarken olay yok. Ama odağı başka bir yere taşıdığımızda, örneğin, butona tıkladığımızda bir `change` olayı olacak:
1212

1313
```html autorun height=40 run
1414
<input type="text" onchange="alert(this.value)">
1515
<input type="button" value="Button">
1616
```
1717

18-
For other elements: `select`, `input type=checkbox/radio` it triggers right after the selection changes.
18+
`select`, `input type=checkbox/radio` elementlerde ise olay, elementteki değişiklikten hemen sonra tetiklenir.
1919

2020
## Event: input
2121

0 commit comments

Comments
 (0)