-2
このスクリプトでは、この例では "NikeAir 32"と同じ値を持つalt
タグをどのように追加しますか?名前を自動的にaltタグ
<script>
function test_options_rendered(){
$('.test_option_value').each(function(){
if(!$(this).parent().hasClass("conditional")){
$(this).find('input:radio').first().prop("checked", true);
// $(".test_radio_option :input:first").prop("checked", true);
}
});
$('.test_radio_option:contains("Nike Air32")').append('<img class="option_img" src="https://image.png">');
}
</script>
あなたの質問と情報は私には意味がありませんでした。あなたは何をしようとしましたか? – eisbehr
あなたは '$( 'test_radio_option:contains(" Nike Air32 ")')を追加します。append( '');' –