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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
---
title: 'FileReader: load event'
slug: Web/API/FileReader/load_event
tags:
- load 事件
translation_of: Web/API/FileReader/load_event
---
<div>{{APIRef}}</div>
<p>当文件成功读取时,执行<code>load</code> 事件</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">是否冒泡</th>
<td>No</td>
</tr>
<tr>
<th scope="row">是否能中断退出</th>
<td>No</td>
</tr>
<tr>
<th scope="row">调用接口</th>
<td>{{domxref("ProgressEvent")}}</td>
</tr>
<tr>
<th scope="row">事件处理属性</th>
<td>{{domxref("FileReader.onload")}}</td>
</tr>
</tbody>
</table>
<h2 id="例子">例子</h2>
<h3 id="Live_example">Live example</h3>
<h4 id="HTML">HTML</h4>
<pre class="brush: html"><div class="example">
<div class="file-select">
<label for="avatar">Choose a profile picture:</label>
<input type="file"
id="avatar" name="avatar"
accept="image/png, image/jpeg">
</div>
<img src="" class="preview" height="200" alt="Image preview...">
<div class="event-log">
<label>Event log:</label>
<textarea readonly class="event-log-contents"></textarea>
</div>
</div></pre>
<div class="hidden">
<h4 id="CSS">CSS</h4>
<pre class="brush: css">img.preview {
margin: 1rem 0;
}
.event-log-contents {
width: 18rem;
height: 5rem;
border: 1px solid black;
margin: .2rem;
padding: .2rem;
}
.example {
display: grid;
grid-template-areas:
"select log"
"preview log";
}
.file-select {
grid-area: select;
}
.preview {
grid-area: preview;
}
.event-log {
grid-area: log;
}
.event-log>label {
display: block;
}
.event-log-contents {
resize: none;
}</pre>
</div>
<h4 id="JS">JS</h4>
<pre class="brush: js">const fileInput = document.querySelector('input[type="file"]');
const preview = document.querySelector('img.preview');
const eventLog = document.querySelector('.event-log-contents');
const reader = new FileReader();
function handleEvent(event) {
eventLog.textContent = eventLog.textContent + `${event.type}: ${event.loaded} bytes transferred\n`;
if (event.type === "load") {
preview.src = reader.result;
}
}
function addListeners(reader) {
reader.addEventListener('loadstart', handleEvent);
reader.addEventListener('load', handleEvent);
reader.addEventListener('loadend', handleEvent);
reader.addEventListener('progress', handleEvent);
reader.addEventListener('error', handleEvent);
reader.addEventListener('abort', handleEvent);
}
function handleSelected(e) {
eventLog.textContent = '';
const selectedFile = fileInput.files[0];
if (selectedFile) {
addListeners(reader);
reader.readAsDataURL(selectedFile);
}
}
fileInput.addEventListener('change', handleSelected);
</pre>
<h4 id="结果">结果</h4>
<p>{{ EmbedLiveSample('Live_example', '100%', '300px') }}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('File API', '#dfn-load-event')}}</td>
<td>{{Spec2('File API')}}</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.FileReader.load_event")}}</p>
<h2 id="请参阅">请参阅</h2>
<ul>
<li>Related events: {{domxref("FileReader.loadstart_event")}}, {{domxref("FileReader.loadend_event")}}, {{domxref("FileReader.progress_event")}}, {{domxref("FileReader.error_event")}}, {{domxref("FileReader.abort_event")}}</li>
</ul>
|