0

我的目标是创建一个 html5 仪表标签进度条。我知道 javascript 是最好的方法。计量标记值属性随着上传的进行而更新。但我不知道如何编写 javascript,我需要这个快速。我知道有可用的插件,但它们中的大多数都打包为一组(带有上传按钮和其他东西)。我只需要一个进度条,它可以读取我的用户上传的文件,并按上传文件的百分比调整仪表标签值。

注意:包含多个属性。

<input name="uploadedfile[]" type="file" multiple>

那么也许你们中的任何人都可以提供帮助?

4

1 回答 1

3

You can do it in tons of ways. One of those is described here: http://www.script-tutorials.com/pure-html5-file-upload/ another is here http://www.amitpatil.me/ajax-file-upload-html5-drag-and-drop-file-upload/

Also read through documentation for progress events http://www.w3.org/TR/progress-events/ - it has both progress event, and load event, which is fired once the progress is complete.

于 2013-03-26T09:17:46.640 回答