jquery select class inside parent div

后端 未结 3 1399
天命终不由人
天命终不由人 2020-12-15 05:13

I\'m trying to change the alt of the image, I\'m clicking by selecting the image\'s class (add_answer)

Note:

3条回答
  •  我在风中等你
    2020-12-15 05:31

    you can use the parent div as the scope:

     $('.add_answer',$(this).parent('div:first')).attr('alt',count);
    

提交回复
热议问题