属性を更新しようとしている HTML 文字列がありますが、変更が反映されていないようです。簡単な例を次に示します。
var source = '<html><head></head><body><img src="abc" /><img src="abc" /></body></html>';
$(source).filter('img').each(function () {
$(this).attr('src', '123');
});
// At this point if I look at source in a debugger
// I'd expect to see the src attributes as all being
// '123', but I still see them all as 'abc'.
ソースが変更で更新されるようにするには、これをどのように記述する必要がありますか?