Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 HTML 布局就是这样
<ul class="small-block-grid-5" id="container"> </ul>
的动态创建<li><img src="image here"></li>是使用完成的
<li><img src="image here"></li>
$("<li/>").prepend('<img src="'+img+'" />').appendTo('#container');
虽然它附加到最后添加的图像的末尾,而不是开头,但我想要这个的原因是我不必继续向下滚动
您需要将其添加到新容器中,而不是附加它。
$("<li/>").append('<img src="'+img +'" />').prependTo('#container');
我必须进行一些更改才能让小提琴在没有图像的情况下工作,但我相信你明白我要去哪里。
小提琴