📜  选择具有特定类的 div 不是所有 div jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:41.143000             🧑  作者: Mango

代码示例1
Use this to target the "selected" element, then select the child with find() or children():
$(document).ready(function() {
  $('.box').mouseover(function() {
    $(this).children('.hide').show();
    $(this).children('.show').hide();
  });
  $('.box').mouseleave(function() {
    $(this).children('.hide').hide();
    $(this).children('.show').show();
  });
});