JS實(shí)現(xiàn)瀏覽上傳文件的代碼
更新時(shí)間:2017年08月23日 14:53:12 作者:MoleKing
本文通過實(shí)例代碼給大家介紹了基于js實(shí)現(xiàn)瀏覽上傳文件的代碼,非常不錯,代碼簡單易懂,具有參考借鑒價(jià)值,需要的朋友參考下吧
廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
<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實(shí)現(xiàn)瀏覽上傳文件的代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
您可能感興趣的文章:
相關(guān)文章
JS實(shí)用案例之輸入智能提示(打字機(jī)輸出效果)
最近在項(xiàng)目需求中遇到之前沒有做過的功能,下面這篇文章主要給大家介紹了關(guān)于JS實(shí)用案例之輸入智能提示,文中通過實(shí)例代碼介紹的非常詳細(xì),打字機(jī)輸出效果的相關(guān)資料,需要的朋友可以參考下2023-01-01
Javascript中獲取出錯代碼所在文件及行數(shù)的代碼
之前在做一個(gè)Javascript的日志控制臺功能模塊,希望能夠在Javascript代碼出錯時(shí)捕獲此錯誤,并將出錯的文件及相應(yīng)的行數(shù)打印到控制臺并匯報(bào)給服務(wù)器。2010-09-09
javascript作用域鏈與執(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ì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-04-04
js中的時(shí)間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時(shí)間的示例代碼
本篇文章主要是對js中的時(shí)間轉(zhuǎn)換—毫秒轉(zhuǎn)換成日期時(shí)間的示例代碼進(jìn)行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助2014-01-01
JS使用jsBarcode生成條形碼(一維碼)簡單實(shí)例
JsBarcode是一個(gè)用JavaScript編寫的條形碼生成器,它支持多種條形碼格式,可在瀏覽器和Node.js中使用,下面這篇文章主要給大家介紹了關(guān)于JS使用jsBarcode生成條形碼(一維碼)的相關(guān)資料,需要的朋友可以參考下2023-03-03

