在iframe標籤通常會指定其name特性以於標識;
2. 在form表單中經過action(目標地址)和target(目標窗口,默認爲_self)來肯定提交的目的地;
3. 將form中的target指向iframe的name,則可將表單提交到了隱藏框架iframe中;
4. iframe裏的內容實際上也是一個頁面,其中的js裏的parent對象指代父頁面,即嵌入iframe的頁面;
5. PHP中用move_uploaded_file()函數來實現文件上傳,$_FILES數組存儲有上傳文件的相關信息。php
<form enctype="multipart/form-data" method="POST" target="upload" action="http://localhost/uploadFile.php" >
<input type="file" name="uploadfile" />
<input type="submit" />
</form>
<iframe name="upload" style="display:none"></iframe>html
和通常的<form>標籤相比多了一個target屬性罷了,用於指定標籤頁在哪裏打開以及提交數據。json
若是沒有設置該屬性,就會像日常同樣在本頁重定向打開action中的url。數組
而若是設置爲iframe的name值,即"upload"的話,就會在該iframe內打開,由於CSS設置爲隱藏,於是不會有任何動靜。若將display:none去掉,還會看到服務器的返回信息。服務器
另外貼一下本身組織的類。app
function uploadFile() { $file = $_FILES['inputpdf']['name']; $filetempname = $_FILES['inputpdf']['tmp_name']; $filelist = explode('.',$file); $type = end($filelist); if($type != 'pdf'){ $return = array ( 'rsp' => 'fail', 'res' => '請上傳pdf文件!', ); echo json_encode($return);exit; } //本身設置的上傳文件存放路徑 $filePath = './public/pdf/'; $contract_name = $file; $string_md5 = md5 (md5($contract_name).time()); $front_string = substr ($string_md5 ,0 ,31 ); $contract_url = 's'.$front_string.'.pdf'; //pdf名稱 $uploadfile = $filePath .$contract_url;//上傳後的文件名地址 //move_uploaded_file() 函數將上傳的文件移動到新位置。若成功,則返回 true,不然返回 false。 $result = move_uploaded_file($filetempname, $uploadfile);//假如上傳到當前目錄下 if($result == true){ $orders = app::get('b2c')->model('orders')->getList('contract_no', array('order_id'=>$_POST['order_id'])); //獲取用戶發票信息 $contracts = app::get('b2c')->model('contract_list')->getList('*', array('contract_no'=>$orders[0]['contract_no'])); //獲取用戶默認收貨地址 $contract_no = $orders[0]['contract_no']; $delfile = $contracts[0]['contract_url']; $contracts[0]['contract_url'] = $uploadfile; $contracts[0]['contract_name'] = $contract_name; $contracts[0]['uptime'] = date('Y-m-d H:i:s',time()); // unset($contracts[0]['id']); $flag = app::get('b2c')->model('contract_list')->update($contracts[0],array('id'=> $contracts[0]['id'])); if($flag){ if(file_exists($delfile)){ unlink($delfile); } $return = array ( 'rsp' => 'succ', 'url' => "/paycenter-download-$contract_no.html", 'res' => '上傳成功!', ); echo json_encode($return);exit; } }else{ $return = array ( 'rsp' => 'fail', 'res' => '上傳失敗!', ); echo json_encode($return);exit; } }