Two ways to upload image files using native ajax and iframe frameworks

韦小宝
Release: 2018-01-10 09:57:09
Original
1541 people have browsed it

This article mainly introduces in detail the two methods of native ajax and iframe frameworks to implement imagefile upload. Friends who are not familiar with ajax file upload and are interested in ajax upload can refer to it. Take a look at this article

You should be able to cite several common ways to implement the asynchronous file upload function. The more frequently used methods are native ajax and iframe frameworks to achieve image file upload. Below, I will share the images with you. There are two ways to upload files: native ajax and iframe framework, for your reference, the specific content is as follows

Method 1: Use the iframe framework to upload images

html code is as follows:


Copy after login


index.js file:


$(function(){ $("#upload_file").change(function(){ $("#uploadFrom").submit(); }); }); function stopSend(str){ var im=""; $("#msg").append(im); }
Copy after login


upload.php file:


parent.stopSend('$name')"; ?>
Copy after login


##Method 2: Original ajax file upload


   Html5 Ajax 上传文件    
  


浏览... 上传

Copy after login


php code:



Copy after login
The above is the content of this article The entire content, I hope it will be helpful for everyone to learn and understand the ajax and iframe frameworks to upload image files.

Related recommendations:

Use AJAX to complete the asynchronous verification of the user name. Detailed example

jquery and iframe to create an ajax upload effect Example sharing

jQuery Ajax uses FormData to upload files and other data examples

The above is the detailed content of Two ways to upload image files using native ajax and iframe frameworks. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!