0

有人可以指出我正确的方向。我有一个使用 jquery 和 fancybox 的网页,图像以精美的宝丽来风格等显示。

小提琴

我怎样才能使使用 html5 文件 APi 添加/上传的新照片将自身放入 div 并应用必要的样式。下面是我需要添加图像的 div。因此,如果我上传 100 张图片,它们在上传后都会自动具有相同的样式。谢谢

<div id="view3">
   <div id="polaroid"> <!--class for styling-->
<!--Image One-->
    <figure><a class="fancybox" title="Image-1" href="images/1.png"><img src="images/1.png" width="250" height="200" alt="" /></a> <!--the image-->
<textarea>Image-1</textarea> <!--the caption that appears below the image-->
</figure>
4

1 回答 1

0

您是否已经有上传处理程序并且只想知道如何添加文件?在这种情况下,您可以执行以下操作:

var parent = $("#polaroid"), 
img =  "<figure><a class='fancybox' title='Image-1' href='images/" + yourFile + "'><img   src='" + yourFile + "' width='250' height='200' alt='' /></a>";
parent.append(img);
于 2013-09-17T06:42:05.410 回答