JS實(shí)現(xiàn)瀏覽上傳文件的代碼
廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
<div style="position:relative;width:380px;"> <iframe id="t_load" name="t_load" style="display: none"></iframe> <form action="" method="post" enctype="multipart/form-data" name="form1" target="t_load"> <input type='text' name='textfield' id='textfield' style="height:22px; border:2px solid #cdcdcd; width:230px; border-radius:50px;" /> <input type='button' value='瀏覽...' style="display: inline-block; margin-bottom: 0; font-size: 14px; border-radius: 4px; padding: 6px 12px; margin: 2px 2px; border: 1px solid #357ebd; background: #1b9ad5; color: #fff;" /> <input type="file" name="file1" accept="image/jpeg, image/gif" id="file1" onchange="document.getElementById('textfield').value=this.value" style="position:absolute; top:5px; right:74px; height:27px; filter:alpha(opacity:0);opacity: 0;width:300px" /> <input type="button" name="button" onclick="mysubmit()" value="上傳" style="display: inline-block; margin-bottom: 0; font-size: 14px; border-radius: 4px; padding: 6px 12px; margin: 2px 2px; border: 1px solid #357ebd; background: #1b9ad5; color: #fff;"> </form> </div> <div style="display:none;color:#6D6D72;font-size: 20px;" id="res"></div> <script> function mysubmit() { var a = document.getElementById("textfield").value; if(a == "") { alert("請(qǐng)上傳文件"); return; } document.form1.submit(); ajaxsend(); } function ajaxsend() { var xmlHttp; if(window.ActiveXObject) { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } else { xmlHttp = new XMLHttpRequest(); } xmlHttp.open("post", "upload", true); xmlHttp.onreadystatechange = function() { xmlHttp.readyState; if(xmlHttp.readyState == 4) { res.innerHTML = "上傳成功!"; setTimeout(function() { res.innerHTML = ""; }, 2000); } else { document.getElementById("res").style.display = "inline"; } } xmlHttp.send(); var obj = document.getElementById('textfield'); obj.outerHTML = obj.outerHTML; } </script>
總結(jié)
以上所述是小編給大家介紹的JS實(shí)現(xiàn)瀏覽上傳文件的代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
- jQuery實(shí)現(xiàn)jQuery-form.js實(shí)現(xiàn)異步上傳文件
- JS文件/圖片從電腦里面拖拽到瀏覽器上傳文件/圖片
- js實(shí)現(xiàn)點(diǎn)擊按鈕彈出上傳文件的窗口
- 真正好用的js驗(yàn)證上傳文件大小的簡(jiǎn)單方法
- js實(shí)現(xiàn)上傳文件添加和刪除文件選擇框
- JS控制FileUpload的上傳文件類型實(shí)例代碼
- JS中使用FormData上傳文件、圖片的方法
- js獲取上傳文件的絕對(duì)路徑實(shí)現(xiàn)方法
- JavaScript判斷FileUpload控件上傳文件類型
- JavaScript檢測(cè)上傳文件大小的方法
相關(guān)文章
JS實(shí)用案例之輸入智能提示(打字機(jī)輸出效果)
最近在項(xiàng)目需求中遇到之前沒有做過的功能,下面這篇文章主要給大家介紹了關(guān)于JS實(shí)用案例之輸入智能提示,文中通過實(shí)例代碼介紹的非常詳細(xì),打字機(jī)輸出效果的相關(guān)資料,需要的朋友可以參考下2023-01-01Javascript中獲取出錯(cuò)代碼所在文件及行數(shù)的代碼
之前在做一個(gè)Javascript的日志控制臺(tái)功能模塊,希望能夠在Javascript代碼出錯(cuò)時(shí)捕獲此錯(cuò)誤,并將出錯(cuò)的文件及相應(yīng)的行數(shù)打印到控制臺(tái)并匯報(bào)給服務(wù)器。2010-09-09javascript作用域鏈與執(zhí)行環(huán)境詳解
這篇文章主要為大家詳細(xì)介紹了javascript作用域鏈與執(zhí)行環(huán)境,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-03-03關(guān)于JS中一維數(shù)組和二維數(shù)組互轉(zhuǎn)問題
這篇文章主要介紹了js中一維數(shù)組和二維數(shù)組互轉(zhuǎn),本文結(jié)合示例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-04-04js中的時(shí)間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時(shí)間的示例代碼
本篇文章主要是對(duì)js中的時(shí)間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時(shí)間的示例代碼進(jìn)行了介紹,需要的朋友可以過來參考下,希望對(duì)大家有所幫助2014-01-01JS使用jsBarcode生成條形碼(一維碼)簡(jiǎn)單實(shí)例
JsBarcode是一個(gè)用JavaScript編寫的條形碼生成器,它支持多種條形碼格式,可在瀏覽器和Node.js中使用,下面這篇文章主要給大家介紹了關(guān)于JS使用jsBarcode生成條形碼(一維碼)的相關(guān)資料,需要的朋友可以參考下2023-03-03