Jquery追加图片到列表打不开

发布于 2024-12-15 06:02:43 字数 375 浏览 2 评论 0原文

我尝试在 jquery mobile 中使用 photoswipe。 当我在列表中添加图像时,它工作正常,该图像将在特殊的图像查看器中很好地打开。

    <ul class="gallery" id="pictures" >
    <li class="s1"><a href="images/no_photo.jpg" rel="external"><img src="images.jpeg" alt="Image 001" /></a></li>
    </ul>

但是,当我用 JQuery 附加图像时,它会添加到列表中,但不会打开特殊的图像查看器。 有人可以帮助我吗?

I trying to use photoswipe within jquery mobile.
When I add an image in the list it works fine, the image will nicely open in the special image viewer.

    <ul class="gallery" id="pictures" >
    <li class="s1"><a href="images/no_photo.jpg" rel="external"><img src="images.jpeg" alt="Image 001" /></a></li>
    </ul>

But when I append with JQuery an image then It added to the list but It won't open it the special image viewer.
Can anybody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天赋异禀 2024-12-22 06:02:44

重要的是实际加载的 DOM 元素。当您手动添加图像时,它们可能会比 jQuery 添加的图像更早加载到 DOM 中。您可能会在 jQuery 之前的 DOM 修改之后、jQuery 驱动的 DOM 修改之前通过 photoswipe 获得图像。确保事情按照正确的顺序完成。

The important things are actual loaded DOM elements. When you add image manually, they will presumably load earlier in DOM than those added by jQuery. You probably get images with photoswipe after pre-jQuery DOM modifactions, but before jQuery-driven DOM modifications. Make sure that things are done in a right order.

你的呼吸 2024-12-22 06:02:44

也许你可以在列表上尝试 data-role="listview" ,然后使用 jquery 添加后进行列表视图刷新。一定要尝试一下

maybe you could try data-role="listview" on the list and then do a listview refresh after adding it using jquery. do try it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文