这里我制作了一个简单的网页来发布图片,文本等。我还制作了一个简单的ajax文件,将文本,图片等发送到数据库,并检索要在同一网页中显示的信息。这是主要网页:
<div class="here" id="here">
@foreach (var photo in db.Query(photos, galleryInfo)){
<div class="com_1 com_3">
<div class="com_4">
<div class="com_44">
<img alt="miniatura" style="margin-top: 0" src="@Href("~/Photo/Thumbnail2", photo.UserId, new { size="small" })" class="thumbnail-border thumb22" />
<div class="n-s">
<b>@photo.Nombre @photo.Apellido</b>
</div>
</div>
<div class="com_5">
@photo.Comment
</div>
</div>
<div class="comcom">
<div class="comcom1">
<form onsubmit="return fofon(this)" id="gog">
<input type="text" style="display: none" name="GroupId" value="@galleryInfo" />
<textarea class="texta"name="comment" placeholder="Write a comment..."></textarea>
<input type="submit" class="g_sub"/>
</form>
</div>
</div>
</div>
}
如果它变得混乱,这会在每个帖子中显示&#34;评论部分&#34;低于每一个(我们可以称之为#34; Commne2&#34;)。 ajax将获取文本,图片等,将其发送到数据库,并将其发布到另一个文件,该文件将显示在此处... @foreach {}。 显然,这些帖子没有&#34; excist&#34;,因此任何影响该帖子的javascript都不会起作用,因为在这种情况下该元素不会被删除。 所以我的问题是,如何创建影响Comment2的ajax文件(javascript文件)以便我可以评论帖子?