您好,登錄后才能下訂單哦!
前言
h6實訓時實現的一個圖片上傳即時顯示的效果,如下圖所示
正文
Html代碼
<form action="" method="POST" role="form"> <div class="form-group"> <label for="touxiang" >頭像上傳:</label> <input type="file" id="headPhoto" name="headPhoto" /> <div ><img id="imag" src="img/up.png" alt="" ></div> </div> </form>
js腳本代碼
<script> /*顯示上傳的圖片*/ function getObjectURL(file) { var url = null ; if (window.createObjectURL!=undefined) { url = window.createObjectURL(file) ; } else if (window.URL!=undefined) { url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=undefined) { url = window.webkitURL.createObjectURL(file) ; } return url ; } $('#headPhoto').change(function() { var eImg=$('#imag'); eImg.attr('src', getObjectURL($(this)[0].files[0])); $(this).after(eImg); }); </script>
window.URL.createObjectURL方法
創建一個新的對象URL,該對象URL可以代表某一個指定的File對象或Blob對象.
語法:
objectURL = window.URL.createObjectURL(blob);
blob參數是一個File對象或者Blob對象.
objectURL是生成的對象URL.通過這個URL,可以獲取到所指定文件的完整內容.
完整代碼如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>圖片上傳</title> <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script> <link href=https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css rel="stylesheet"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <form action="" method="POST" role="form"> <div class="form-group"> <label for="touxiang" >頭像上傳:</label> <input type="file" id="headPhoto" name="headPhoto" /> <div ><img id="imag" src="img/up.png" alt="" ></div> </div> </form> </body> <script> /*顯示上傳的圖片*/ function getObjectURL(file) { var url = null ; if (window.createObjectURL!=undefined) { url = window.createObjectURL(file) ; } else if (window.URL!=undefined) { url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=undefined) { url = window.webkitURL.createObjectURL(file) ; } return url ; } $('#headPhoto').change(function() { var eImg=$('#imag'); eImg.attr('src', getObjectURL($(this)[0].files[0])); $(this).after(eImg); }); </script> </html>
參考:鏈接
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。