在我的应用程序中,我动态地将图像并排呈现给客户端。作为用户,可以给图像打分,我希望可以通过单击按钮对图像进行排序,首先按最高点降序排列。
我在 Stack 上看到了一些关于排序 div 的示例,但在我的示例中,图像应该排序的内容位于一些嵌套的 div 内(见下文)。什么是根据这个参数(点)对图像进行排序的好方法,有什么想法吗?
<div class="image">
<div class="post">
// other code here
<img src="img/image1.png" />
<div class="postDesc">
// other code here
<p class="postDescContent">Points: 20</p>
</div
</div>
</div>
<div class="image">
<div class="post">
// other code here
<img src="img/image2.png" />
<div class="postDesc">
// other code here
<p class="postDescContent">Points: 10</p>
</div
</div>
</div>
// and so on...
编辑:我看到你们中的许多人已经指出我对两个图像使用相同的 id 的事实。我的错,我知道这一点,我只是在创建我的例子时忘记了它。它现在改为类。