How to selected a div inside a selector?

This question already has an answer here:

  • How to get the children of the $(this) selector? 16 answers

  • $(".switch").each(function(){
         console.log(this);
         $(this).find('#nameMachine').css({
              'background-color': 'white',
              'border-style': 'solid',
              'border-color': 'inherit',
              'border-width': '3px',
         });
     });
    

    要么

    $(".switch").each(function(){
         console.log(this);
         this.querySelector('#nameMachine').css({
              'background-color': 'white',
              'border-style': 'solid',
              'border-color': 'inherit',
              'border-width': '3px',
         });
     });
    

    尝试这个

    this.querySelector('#nameMachine');
    

    尝试这个:

    $(".switch").each(function(){
       console.log(this);
       $(this).find('#nameMachine').css({
          'background-color': 'white',
          'border-style': 'solid',
          'border-color': 'inherit',
          'border-width': '3px',
       });
    });
    
    链接地址: http://www.djcxy.com/p/26672.html

    上一篇: Jquery $(this)子选择器

    下一篇: 如何在选择器中选择一个div?