Javascript select nested class element

前端 未结 6 1174
遇见更好的自我
遇见更好的自我 2020-12-31 03:25

I\'m working on changing some elements the slider on my website

my slider code looks like this:

Some heading&

6条回答
  •  北海茫月
    2020-12-31 04:16

    document.querySelectorAll('.cl1 .sl_price');
    

    This will select all nested sl_price elements inside cl1. If you are looking to modify more cl's (i.e. cl1, cl2, cl3) just add a common class to all of them such as cl.

提交回复
热议问题