日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

即时显示缩略图

發布時間:2025/5/22 编程问答 16 豆豆
生活随笔 收集整理的這篇文章主要介紹了 即时显示缩略图 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

上傳圖片立即顯示圖片縮略圖,支持火狐和IE

chrome暫時不支持

演示接口:http://www.laruence.com/wp-content/uploads/previewDemo.html

<html> <head> <meta content="text/html; charset=utf-8" http-equiv=content-type> <meta name=author content="Laruence(www.laruence.com)"> <title>即時顯示縮略圖</title> </head> <body><div class='previewDemo'><input id="file" type="file" οnchange="preivew(this, document.getElementById('img'));"><img id="img" style="visibility:hidden" height="100px" width="100px"> </div> <script language="javascript" type="text/javascript">var allowExt = ['jpg', 'gif', 'bmp', 'png', 'jpeg'];var preivew = function(file, container){try{var pic = new Picture(file, container);}catch(e){alert(e);}}//縮略圖類定義var Picture = function(file, container){var height = 0, widht = 0, ext = '',size = 0,name = '',path = '';var self = this;if(file){ name = file.value;if (window.navigator.userAgent.indexOf("MSIE")>=1){ file.select(); path = document.selection.createRange().text; }else if(window.navigator.userAgent.indexOf("Firefox")>=1){ if(file.files){ path = file.files.item(0).getAsDataURL(); }else{path = file.value;}} }else{throw "bad file";} ext = name.substr(name.lastIndexOf("."), name.length);if(container.tagName.toLowerCase() != 'img'){throw "container is not a valid img label";container.visibility = 'hidden';}container.src = path;container.alt = name;container.style.visibility = 'visible';height = container.height;widht = container.widht;size = container.fileSize;this.get = function(name){return self[name];}this.isValid = function(){if(allowExt.indexOf(self.ext) !== -1){throw 'the ext is not allowed to upload';return false;}}} </script></body> </html>

轉載于:https://www.cnblogs.com/y0umer/archive/2011/09/14/2809517.html

總結

以上是生活随笔為你收集整理的即时显示缩略图的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。