本文實例講述了php+iframe 實現(xiàn)上傳文件功能。分享給大家供大家參考,具體如下:
我們通過動態(tài)的創(chuàng)建iframe,修改form的target,來實現(xiàn)無跳轉(zhuǎn)的文件上傳。
具體的實現(xiàn)步驟
1.捕捉表單提交事件
2.創(chuàng)建一個iframe
3.修改表單的target,指向iframe
4.刪除iframe
file.html代碼如下:
!DOCTYPE HTML>
html lang="zh-CN">
head>
meta charset="UTF-8">
title>/title>
/head>
body>
form action="upfile.php" method="post" id="upfileForm" enctype="multipart/form-data">
input type="file" name="file" />
input type="submit" name="submit" value="上傳" />
/form>
div id="result">/div>
/body>
script type="text/javascript" src="./jquery.js">/script>
script type="text/javascript">
$("#upfileForm").bind("submit", function() {
var ifrName = 'upfile' + Math.random();
var ifr = $("iframe name='" + ifrName + "' width='0' height='0' frameborder='0'>/iframe>");
$("body").append(ifr);
$(this).attr("target", ifrName);
});
/script>
/html>
upfile.php代碼如下:
?php
$uploadDir = './upload/';
if(!file_exists($uploadDir)) {
@mkdir($uploadDir, 0777, true);
}
$uploadFile = $uploadDir . basename($_FILES['file']['name']);
if(move_uploaded_file($_FILES['file']['tmp_name'], $uploadFile)) {
echo "script>parent.document.getElementById('result').innerHTML='OK';/script>";
} else {
echo "script>parent.document.getElementById('result').innerHTML='NO';/script>";
}
更多關于PHP相關內(nèi)容感興趣的讀者可查看本站專題:《php文件操作總結(jié)》、《PHP目錄操作技巧匯總》、《PHP常用遍歷算法與技巧總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設計算法總結(jié)》及《PHP網(wǎng)絡編程技巧總結(jié)》
希望本文所述對大家PHP程序設計有所幫助。
您可能感興趣的文章:- PHP+iframe模擬Ajax上傳文件功能示例
- php+iframe實現(xiàn)隱藏無刷新上傳文件
- PHP+iFrame實現(xiàn)頁面無需刷新的異步文件上傳
- php利用iframe實現(xiàn)無刷新文件上傳功能的代碼
- php表單文件iframe異步上傳實例講解
- php+js iframe實現(xiàn)上傳頭像界面無跳轉(zhuǎn)
- PHP+iframe圖片上傳實現(xiàn)即時刷新效果
- PHP 圖片文件上傳實現(xiàn)代碼
- 一個經(jīng)典的PHP文件上傳類分享
- PHP文件上傳實例詳解!?。?/li>