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.
在我的网站中嵌入了一个闪存,我需要更改为 jquery,我正在努力解决两个问题:这个闪存是为加载图像而完成的,关键是这些图像是通过 xml 获得的,换句话说,创建了一个函数搜索图像,得到的结果存储在 xml 文件中,然后以某种方式作为 flash 变量在 webservlink 中发送。
关键是我用 jquery 加载这些图像,但关键是,我必须如何从 xml 中获取图像并将它们放入我创建的列表中
根据 XML 格式,您可以使用以下内容:
$(document).ready(function() { $.get('/images.xml', function(data){ $(data).find('img').each(function(){ var image = $(this); var img_src = $book.attr("src"); (new Image()).src = image; }); }); });