DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5詳解 >> html5讀取本地文件示例代碼
html5讀取本地文件示例代碼
編輯:HTML5詳解     
Html結構樣式如下: 

復制代碼代碼如下:
<div class="addpic"> 
<button>添加圖片</button> 
<form> 
<input id="logoimg" class="addlogo" type="file" multiple accept="image/*" name="logo"> 
</form> 
</div> 
<img id="showlogo" src="" alt=""> 

從樣式上說應不顯示input元素的輸入框,這時需將input設置為透明樣式,然後將其覆蓋到button元素上方,這時方可實現點擊button上傳圖片。將accepted設置為“image/*”,則只允許圖片類文件上傳。 

CSS樣式如下 

復制代碼代碼如下:
.addpic{ 
position:relative; 
margin-left:100px; 
width:95px; 
height:30px; 

.addlogo { 
background: none repeat scroll 0 0 rgba(0, 0, 0, 0); 
cursor: pointer; 
font-size: 30px; 
opacity: 0; 
position: absolute; 
right: 0; 
top: 0; 
z-index: 10; 


JS代碼 

復制代碼代碼如下:
function readFiles(evt){ 
var files=evt.target.files; 
if(!files){ 
console.log("the file is invaild"); 
return; 

for(var i=0, file; file=files[i]; i++){ 
var imgele=new Image(); 
var thesrc=window.URL.createObjectURL(file); 
imgele.src=thesrc; 
imgele.onload=function(){ 
$("#showlogo").attr("src",this.src); 





復制代碼代碼如下:
$(document).ready(function(){ 
$("#logoimg").change(function(e){ 
readFiles(e) 
}); 
}); 
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved