YoucreateaWebpagethatcontainsthefollowingdiv.YouhaveaJavaScriptarraynamedimageurlsthatcont
YoucreateaWebpagethatcontainsthefollowingdiv.YouhaveaJavaScriptarraynamedimageurlsthatcontainsalistofimageURLs.YouneedtowriteaJavaScriptfunctionthatwillinsertimagesfromtheURLsintotarget.Whichcodesegmentshouldyouuse?()
A、$(imageurls).each(function(i,url){$("#$IMG0$#",url).append("#target");});
B、$(imageurls).each(function(i,url){$("#target")+=$("#$IMG0$#").attr("src",url);});
C、$.each(imageurls,function(i,url){$("#$IMG0$#").attr("src",url).appendTo("#target");});
D、$.each(imageurls,function(i,url){$("#target").append("#$IMG0$#").src=url;});