问题描述
- 如何保存对每张图片的描述
-
//图片预览
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
解决方案二:
textArea.setAttribute("name", 根据图片数量给它一个名字);
服务器用Request["名字"]可以获取
解决方案三:
textArea.setAttribute("name", 根据图片数量给它一个名字);
服务器用Request["名字"]可以获取
# ## *这个是可以的哈**_
时间: 2024-11-11 09:16:37