主頁(yè) > 知識(shí)庫(kù) > jsp中實(shí)現(xiàn)上傳圖片即時(shí)顯示效果功能

jsp中實(shí)現(xiàn)上傳圖片即時(shí)顯示效果功能

熱門標(biāo)簽:汝南縣地圖標(biāo)注app 甘肅銷售電銷機(jī)器人公司 智能電話機(jī)器人銷售話術(shù) 外呼直播語(yǔ)音系統(tǒng) 湖北地圖標(biāo)注公司 四川正規(guī)外呼系統(tǒng)軟件 地圖標(biāo)注專業(yè)和非專業(yè) 福建電銷貓機(jī)器人收費(fèi) 山東ai外呼電銷機(jī)器人好用嗎
復(fù)制代碼 代碼如下:

script>
function setImagePreview() {
var docObj=document.getElementById("doc");
var imgObjPreview=document.getElementById("preview");
if(docObj.files docObj.files[0]){
//火狐下,直接設(shè)img屬性
imgObjPreview.style.display = 'block';
imgObjPreview.style.width = '300px';
imgObjPreview.style.height = '120px';
//imgObjPreview.src = docObj.files[0].getAsDataURL();
//火狐7以上版本不能用上面的getAsDataURL()方式獲取,需要一下方式
imgObjPreview.src = window.URL.createObjectURL(docObj.files[0]);
}else{
//IE下,使用濾鏡
docObj.select();
var imgSrc = document.selection.createRange().text;
var localImagId = document.getElementById("localImag");
//必須設(shè)置初始大小
localImagId.style.width = "250px";
localImagId.style.height = "200px";
//圖片異常的捕捉,防止用戶修改后綴來偽造圖片
try{
localImagId.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale)";
localImagId.filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = imgSrc;
}catch(e){
alert("您上傳的圖片格式不正確,請(qǐng)重新選擇!");
return false;
}
imgObjPreview.style.display = 'none';
document.selection.empty();
}
return true;
}
/script>
body>
input type=file name="doc" id="doc" onchange="javascript:setImagePreview();">
p>div id="localImag">img id="preview" width=-1 height=-1 style="diplay:none" />/div>/p>
您可能感興趣的文章:
  • JS實(shí)現(xiàn)上傳圖片的三種方法并實(shí)現(xiàn)預(yù)覽圖片功能
  • js實(shí)現(xiàn)上傳圖片預(yù)覽的方法
  • 上傳圖片預(yù)覽JS腳本 Input file圖片預(yù)覽的實(shí)現(xiàn)示例
  • 微信JSSDK上傳圖片
  • js實(shí)現(xiàn)上傳圖片之上傳前預(yù)覽圖片
  • js實(shí)現(xiàn)ctrl+v粘貼上傳圖片(兼容chrome、firefox、ie11)
  • Javascript 驗(yàn)證上傳圖片大小[客戶端]
  • JS上傳圖片前的限制包括(jpg jpg gif及大小高寬)等
  • js 上傳圖片預(yù)覽問題
  • 原生js實(shí)現(xiàn)上傳圖片控件

標(biāo)簽:梅州 吳忠 肇慶 白銀 臨沂 昌都 南充 黔東

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp中實(shí)現(xiàn)上傳圖片即時(shí)顯示效果功能》,本文關(guān)鍵詞  jsp,中,實(shí)現(xiàn),上傳,圖片,即時(shí),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp中實(shí)現(xiàn)上傳圖片即時(shí)顯示效果功能》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于jsp中實(shí)現(xiàn)上傳圖片即時(shí)顯示效果功能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章