jQuery有多种方式来获取对象,以下是一些常用的方法:
$('#id')
$('.class')
$('tag')
$('[attribute=value]')
$(selector)
$parent.find('selector')
$child.parent()
$sibling.siblings()
$(':eq(index)')
$(':filter')
以上是一些常用的获取对象的方法,根据具体的需求,选择合适的方法来获取对象。