jQuery有多種方式來獲取對象,以下是一些常用的方法:
$('#id')
$('.class')
$('tag')
$('[attribute=value]')
$(selector)
$parent.find('selector')
$child.parent()
$sibling.siblings()
$(':eq(index)')
$(':filter')
以上是一些常用的獲取對象的方法,根據具體的需求,選擇合適的方法來獲取對象。