用js實(shí)現(xiàn)上傳圖片前的預(yù)覽(TX的面試題)
更新時(shí)間:2007年08月14日 19:33:18 作者:
以前不知道 file 控件也能使用 onchange,導(dǎo)致面試時(shí)失去良機(jī)。
<script>
function yulan()
{
var fileext=document.form1.UpFile.value.substring(document.form1.UpFile.value.lastIndexOf("."),document.form1.UpFile.value.length)
fileext=fileext.toLowerCase()
if ((fileext!='.jpg')&&(fileext!='.gif')&&(fileext!='.jpeg')&&(fileext!='.png')&&(fileext!='.bmp'))
{
alert("對(duì)不起,系統(tǒng)僅支持標(biāo)準(zhǔn)格式的照片,請(qǐng)您調(diào)整格式后重新上傳,謝謝 !");
document.form1.UpFile.focus();
}
else
{
//alert(''+document.form1.UpFile.value)//把這里改成預(yù)覽圖片的語(yǔ)句
document.getElementById("preview").innerHTML="<img src='"+document.form1.UpFile.value+"' width=120 style='border:6px double #ccc'>"
}
}
</script>
<form name="form1" method="POST" enctype="multipart/form-data">
<input type="file" name="UpFile" size="46" onchange="yulan()">
<div id="preview"></div>
</form>
<script>
function yulan()
{
var fileext=document.form1.UpFile.value.substring(document.form1.UpFile.value.lastIndexOf("."),document.form1.UpFile.value.length)
fileext=fileext.toLowerCase()
if ((fileext!='.jpg')&&(fileext!='.gif')&&(fileext!='.jpeg')&&(fileext!='.png')&&(fileext!='.bmp'))
{
alert("對(duì)不起,系統(tǒng)僅支持標(biāo)準(zhǔn)格式的照片,請(qǐng)您調(diào)整格式后重新上傳,謝謝 !");
document.form1.UpFile.focus();
}
else
{
//alert(''+document.form1.UpFile.value)//把這里改成預(yù)覽圖片的語(yǔ)句
document.getElementById("preview").innerHTML="<img src='"+document.form1.UpFile.value+"' width=120 style='border:6px double #ccc'>"
}
}
</script>
<form name="form1" method="POST" enctype="multipart/form-data">
<input type="file" name="UpFile" size="46" onchange="yulan()">
<div id="preview"></div>
</form>
您可能感興趣的文章:
- 你有必要知道的25個(gè)JavaScript面試題
- 一套比較完整的javascript面試題(部分答案)
- js前端面試題及答案整理(一)
- 網(wǎng)易JS面試題與Javascript詞法作用域說(shuō)明
- 一不小心就做錯(cuò)的JS閉包面試題
- 5個(gè)JavaScript經(jīng)典面試題
- Javascript前端經(jīng)典的面試題及答案
- 一道常被人輕視的web前端常見面試題(JS)
- 從面試題學(xué)習(xí)Javascript 面向?qū)ο螅▌?chuàng)建對(duì)象)
- 詳解JS中的this、apply、call、bind(經(jīng)典面試題)
- JS常見面試試題總結(jié)【去重、遍歷、閉包、繼承等】
相關(guān)文章
多圖展示點(diǎn)擊切換效果模擬的flash效果,點(diǎn)小圖放大顯示,再點(diǎn)恢復(fù)默認(rèn)。
多圖展示點(diǎn)擊切換效果模擬的flash效果,點(diǎn)小圖放大顯示,再點(diǎn)恢復(fù)默認(rèn)。...2006-12-12超級(jí)經(jīng)典一套鼠標(biāo)控制左右滾動(dòng)圖片帶自動(dòng)翻滾
鼠標(biāo)控制左右滾動(dòng)圖片帶自動(dòng)翻滾2008-06-06用javascript實(shí)現(xiàn)旋轉(zhuǎn)圖片效果的代碼
用javascript實(shí)現(xiàn)旋轉(zhuǎn)圖片效果的代碼...2007-11-11