您好,登錄后才能下訂單哦!
這篇文章主要講解了“JS+HTML5實現(xiàn)圖片在線預覽功能的代碼怎么寫”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“JS+HTML5實現(xiàn)圖片在線預覽功能的代碼怎么寫”吧!
具體代碼如下
<!DOCTYPE html> <html> <head> <title>HTML5圖片預覽</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="http://img9.tongzhuo100.com/js/jquery-1.7.2.min.js"></script> <style> .hide { display:none; } </style> </head> <body> <h4>請選擇一張JPG/GIF的圖片</h4> <form name="form0" id="form0" > <input type="file" name="file0" id="file0" multiple="multiple" /> <br><br><img src="" id="img0" width="120" class="hide"> </form> <script> $("#file0").change(function(){ var objUrl = getObjectURL(this.files[0]) ; console.log("objUrl = "+objUrl) ; if (objUrl) { $("#img0").attr("src", objUrl); $("#img0").removeClass("hide"); } }) ; function getObjectURL(file) { var url = null ; if (window.createObjectURL!=undefined) { // basic url = window.createObjectURL(file) ; } else if (window.URL!=undefined) { // mozilla(firefox) url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=undefined) { // webkit or chrome url = window.webkitURL.createObjectURL(file) ; } return url ; } </script> </body> </html>
感謝各位的閱讀,以上就是“JS+HTML5實現(xiàn)圖片在線預覽功能的代碼怎么寫”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對JS+HTML5實現(xiàn)圖片在線預覽功能的代碼怎么寫這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。