“orang tua pemilih jQuery di hover” Kode Jawaban

orang tua pemilih jQuery di hover

$('table').on('hover', 'td', function () {
    var selector = $('selector_in_td', $(this));
    if (selector.length > 0) {
        //Your code
    }
});
Matteoweb

orang tua pemilih jQuery di hover

   //styling child while mouse is inside child element
$('child').on('hover', function(e){
   if (e.type == 'mouseenter'){
      $(this).css('background','yellow');
   }
})

   // styling child while mouse is inside parent
$('child').parents().on('hover', function (e){
   if (e.type == 'mouseenter'){
      $(this).css('background', 'blue');
   }
})
Matteoweb

Jawaban yang mirip dengan “orang tua pemilih jQuery di hover”

Pertanyaan yang mirip dengan “orang tua pemilih jQuery di hover”

Lebih banyak jawaban terkait untuk “orang tua pemilih jQuery di hover” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya