HTML選擇圖片并直接瀏覽完成代碼
發(fā)表時間:2023-12-23 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]本文主要和大家分享HTML選擇圖片并直接預(yù)覽實現(xiàn)代碼,希望大家可以根據(jù)本文的代碼,實現(xiàn)HTML選擇圖片并直接預(yù)覽的效果。<!DOCTYPE html><html><head><meta name="viewport" content=&...
本文主要和大家分享HTML選擇圖片并直接預(yù)覽實現(xiàn)代碼,希望大家可以根據(jù)本文的代碼,實現(xiàn)HTML選擇圖片并直接預(yù)覽的效果。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>選擇圖片并預(yù)覽</title>
<script type="text/javascript">
function getFileUrl(sourceId) {
var url;
if (navigator.userAgent.indexOf("MSIE")>=1) { // IE
url = document.getElementById(sourceId).value;
} else if(navigator.userAgent.indexOf("Firefox")>0) { // Firefox
url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0));
} else if(navigator.userAgent.indexOf("Chrome")>0) { // Chrome
url = window.URL.createObjectURL(document.getElementById(sourceId).files.item(0));
}
return url;
}
function preImg(sourceId, targetId) {
var url = getFileUrl(sourceId);
var imgPre = document.getElementById(targetId);
imgPre.src = url;
}
</script>
</head>
<body>
<p>
<br />
<br />
<a>上傳者:<input type="text" /></a>
<br />
<br />
<form action="">
<input type="file" name="imgOne" id="imgOne" onchange="preImg(this.id,'photo');" />
<br />
<br />
<img id="photo" src="" width="300px" height="300px" style="display: block;" />
</form>
</p>
</body>
</html>
相關(guān)推薦:
input type=file 選擇圖片并且實現(xiàn)預(yù)覽效果詳解
以上就是HTML選擇圖片并直接預(yù)覽實現(xiàn)代碼的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。