blob: 001737599355456548aea32fa833bf5d1194314d (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
---
title: GlobalEventHandlers.ontouchstart
slug: Web/API/GlobalEventHandlers/ontouchstart
translation_of: Web/API/GlobalEventHandlers/ontouchstart
---
<div>{{ApiRef("HTML DOM")}}</div>
<p>{{event("touchstart")}} 이벤트를 위한 {{domxref("GlobalEventHandlers","global event handler")}}</p>
<p>{{SeeCompatTable}}</p>
<div class="note">
<p><strong>Note:</strong> 이 요소는 아직 표준화 되지 <em>않은</em> 기술입니다. It is specified in the {{SpecName('Touch Events 2')}} {{Spec2('Touch Events 2')}} 명세에서 작성된 기술이며 {{SpecName('Touch Events')}} {{Spec2('Touch Events')}}에는 포함되어 있지 않습니다. 따라서 아직 대부분의 브라우저에서는 사용되지 않는 요소입니다.</p>
</div>
<h2 id="Syntax" name="Syntax">문법</h2>
<pre class="eval">var startHandler = someElement.ontouchstart;
</pre>
<h3 id="Return_Value" name="Return_Value">반환 값</h3>
<dl>
<dt><code>startHandler</code></dt>
<dd><code>someElement</code>를 위한 <em>touchstart</em> 이벤트 핸들러</dd>
</dl>
<h2 id="예제">예제</h2>
<p>이 예제는 HTML 요소에 <em>touchstart</em> e이벤트 핸들러를 등록하기 위한 두 방법을 보여주고 있습니다.</p>
<pre class="brush: js"><html>
<script>
function startTouch(ev) {
// 이벤트 내부
}
function init() {
var el=document.getElementById("target1");
el.ontouchstart = startTouch;
}
</script>
<body onload="init();">
<div id="target1"> 터치해주세요... </div>
<div id="target2" ontouchstart="startTouch(event)"> 터치해주세요... </div>
</body>
</html>
</pre>
<h2 id="명세">명세</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">명세</th>
<th scope="col">현황</th>
<th scope="col">비고</th>
</tr>
<tr>
<td>{{SpecName('Touch Events 2','#widl-GlobalEventHandlers-ontouchstart')}}</td>
<td>{{Spec2('Touch Events 2')}}</td>
<td>Non-stable version.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari (WebKit)</th>
</tr>
<tr>
<td>Basic support</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Android Webview</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>Firefox OS</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
</div>
<h2 id="sect1"> </h2>
<h2 id="더_보기">더 보기</h2>
<ul>
<li>{{ event("touchstart") }}</li>
</ul>
|