如果用$("div")是拿选择所有的div
$('.ui-selecter',this)选择的是现在选项中的child里面class是ui-selecter的
意思跟jQuery(this).find(".ui-selecter");等同

$('span',this)
等同于
$(this).find('span')

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
  • 2021-06-11
  • 2022-12-23
  • 2021-10-28
  • 2022-12-23
  • 2021-10-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
  • 2022-12-23
相关资源
相似解决方案