-3
この
<img src="../../img/potatoes.png" alt="potatoes">
<img src="../../img/potatoes/newpotatoes.png" alt="potatoes">
この
<img src="../../img/potatoes.png" alt="potatoes">
<img src="../../img/potatoes/newpotatoes.png" alt="potatoes">
にあなたはその仕事は、特定の「ジャガイモをターゲットにする特定の要素
[].slice.call(document.querySelectorAll('img')).filter(function(img){
return img.alt === 'potatoes';
}).forEach(function(img){
img.src = img.src.replace('.png', '/new' + img.alt.charAt(0).toUpperCase() + img.alt.slice(1) + '.png')
});
恐ろしいを得るためにarray filterを使用することができます"altタグまたはiすべてのimgタグソースをnewPotatoesに変更しますか?異なるaltタグを持つ複数の画像がある場合、どのようにして独自のaltタグpotatoを持つ画像のみを指定できますか?多くのジャガイモのためのあなたの時間と謝罪のためのTy。 – Monolithic
私は自分の答えを編集しました。画像の数に関係なく、img altタグのどれかが 'ジャガイモ'であれば置換されます。 – cstuncsik