您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何使用jquery+iframe做一個ajax上傳效果的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
html頁面
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN"> <head> <title>利用jquery+iframe做一個ajax上傳效果</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <script src="http://libs.baidu.com/jquery/1.8.2/jquery.min.js"></script> <script type="text/javascript"> // 利用 jquery+iframe 做一個ajax上傳效果 /* 思路: 1: 點擊"提交"時的瞬間,生成一個iframe對象,插入body中 2: 修改form的target ,為iframe的name值 3: 給iframe加1個事件 ,onload */ $( function() { $('input:button').click(function(){ //alert('s'); var ifmname = 'ifm' + Math.random(); var ifm = $('<iframe width="0" height="0" frameborder="0" name="'+ ifmname +'">'); ifm.appendTo($('body')); $('form').attr('target',ifmname); $('form').submit(); $('#progress').html('<img src="<img src="//img.jbzj.com/file_images/article/201708/loading.gif" alt="" />" border="0">'); ifm.load(function(){ $('#progress').html('上傳完畢'); this.remove(); }); }); } ); </script> <style type="text/css"> </style> </head> <body> <div id="progress"></div> <form action="upfile.php" method="post" enctype="multipart/form-data" target="upfile"> <input type="file" name="pic" /><br /> <input type="button" value="提交" /> </form> </body> </html>
upfile.php
echo move_uploaded_file($_FILES['pic']['tmp_name'],'./upload/' . $_FILES['pic']['name']) ? 'OK':'fail';
感謝各位的閱讀!關于“如何使用jquery+iframe做一個ajax上傳效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。