JS實現(xiàn)瀏覽上傳文件的代碼
更新時間:2017年08月23日 14:53:12 作者:MoleKing
本文通過實例代碼給大家介紹了基于js實現(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("請上傳文件"); 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實現(xiàn)瀏覽上傳文件的代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
相關(guān)文章
Javascript中獲取出錯代碼所在文件及行數(shù)的代碼
之前在做一個Javascript的日志控制臺功能模塊,希望能夠在Javascript代碼出錯時捕獲此錯誤,并將出錯的文件及相應(yīng)的行數(shù)打印到控制臺并匯報給服務(wù)器。2010-09-09javascript作用域鏈與執(zhí)行環(huán)境詳解
這篇文章主要為大家詳細(xì)介紹了javascript作用域鏈與執(zhí)行環(huán)境,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-03-03關(guān)于JS中一維數(shù)組和二維數(shù)組互轉(zhuǎn)問題
這篇文章主要介紹了js中一維數(shù)組和二維數(shù)組互轉(zhuǎn),本文結(jié)合示例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-04-04js中的時間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時間的示例代碼
本篇文章主要是對js中的時間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時間的示例代碼進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助2014-01-01