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:
index.js file:
$(function(){ $("#upload_file").change(function(){ $("#uploadFrom").submit(); }); }); function stopSend(str){ var im=""; $("#msg").append(im); }
upload.php file:
parent.stopSend('$name')"; ?>
##Method 2: Original ajax file upload
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!