jquery last()方法
翻譯結果:
last
英[lɑ:st] 美[læst]
n.最後;結尾;上個;鞋楦(做鞋的模型)
vt.經受住;到…之後;夠用;足夠維持(尤指某段時間)
adj.最後的;最近的;最不可能的;惟一剩下的
vi.持續
adv.最後;上次,最近一次
jquery last()方法語法
作用:last() 將匹配元素集合縮減為集合中的最後一個元素。
語法:.last()
說明:如果給定一個表示DOM 元素集合的jQuery 對象,.last( ) 方法會用最後一個符合元素建構一個新的jQuery 物件。
jquery last()方法範例
<!DOCTYPE html> <html> <head> <style>.highlight{background-color: yellow}</style> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> </head> <body> <p><span>Look:</span> <span>This is some text in a paragraph.</span> <span>This is a note about it.</span></p> <script>$("p span").last().addClass('highlight');</script> </body> </html>
#點擊 "執行實例" 按鈕查看線上實例