Asynchronous web upload
Can anyone recommend a free module that will let me create web forms that allow asynchronous file uploads? I want to be able to upload files on a website without doing a full page reload. The module must work with a LAMP web site. The module 开发者_运维知识库can be built in AJAX or Flash.
Or is it better for me to create this module myself?
Your options are:
- a script such as AJAX upload
- a Flash file such as SWFUpload
- a regular
form
with thetarget
attribute pointing to an iframe on your page.
I prefer the Flash version since that makes it easier to add a progress bar.
Assuming you use JQuery, try this plugin
精彩评论