如何在选择器中选择一个div?

这个问题在这里已经有了答案:

  • 如何获得$(this)选择器的孩子? 16个答案

  • $(".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/26671.html

    上一篇: How to selected a div inside a selector?

    下一篇: How to define a child element on a Jquery script