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ファイルに保存され、特定の方法で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; }); }); });