aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/xmlhttprequest/upload/index.html
blob: df0e2a83b2b91395190d80c2da61be33be702c37 (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: XMLHttpRequest.upload
slug: Web/API/XMLHttpRequest/upload
translation_of: Web/API/XMLHttpRequest/upload
---
<p>{{APIRef('XMLHttpRequest')}}</p>

<p><strong>XMLHttpRequest.upload 属性返回一个</strong> {{domxref("XMLHttpRequestUpload")}}对象,用来表示上传的进度。这个对象是不透明的,但是作为一个{{domxref("XMLHttpRequestEventTarget")}},可以通过对其绑定事件来追踪它的进度。</p>

<p>可以被绑定在upload对象上的事件监听器如下:</p>

<table class="standard-table">
 <tbody>
  <tr>
   <td class="header">事件</td>
   <td class="header">相应属性的信息类型</td>
  </tr>
  <tr>
   <td><code>onloadstart</code></td>
   <td>获取开始</td>
  </tr>
  <tr>
   <td><code>onprogress</code></td>
   <td>数据传输进行中</td>
  </tr>
  <tr>
   <td><code>onabort</code></td>
   <td>获取操作终止</td>
  </tr>
  <tr>
   <td><code>onerror</code></td>
   <td>获取失败</td>
  </tr>
  <tr>
   <td><code>onload</code></td>
   <td>获取成功</td>
  </tr>
  <tr>
   <td><code>ontimeout</code></td>
   <td>获取操作在用户规定的时间内未完成</td>
  </tr>
  <tr>
   <td><code>onloadend</code></td>
   <td>获取完成(不论成功与否)</td>
  </tr>
 </tbody>
</table>

<h2 id="说明">说明</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('XMLHttpRequest', '#the-upload-attribute')}}</td>
   <td>{{Spec2('XMLHttpRequest')}}</td>
   <td>WHATWG living standard</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

{{Compat("api.XMLHttpRequest.upload")}}