程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 圖片上傳 上傳-如何保存對每張圖片的描述

圖片上傳 上傳-如何保存對每張圖片的描述

編輯:編程綜合問答
如何保存對每張圖片的描述

//圖片預覽
function previewImage(file) {
var div = document.getElementById('preview');
div.innerHTML = "";
for (var i = 0; i < file.files.length; i++) {
//alert(file.files[i]);
var ndiv = document.createElement("div");
ndiv.style.height = "150px";
ndiv.style.width = "300px";
ndiv.style.cssFloat = "left";
var img = document.createElement("img");
//添加圖片描述,如何保存?
var textArea = document.createElement("textarea");
textArea.style.width = "100";
textArea.style.height = "95px";
ndiv.appendChild(img);
ndiv.appendChild(textArea);
alert(img);
img.id = "img" + i;
div.appendChild(ndiv);
img.width = 100;
img.height = 100;

        }

                    照片上傳:
                                    <input type="file" multiple="multiple" onchange="previewImage(this)" id="myimage" runat="server" class="btn btn-default" style="margin-left:40%;height:69px;width:280px"/>

最佳回答:


http://www.jb51.net/html5/160920.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved