[0]是什麼意思?也有沒有參考/手動,我可以使用以防止問簡單的問題像這樣..
var height = $('.string-parent-container')[0].scrollHeight;
$('.string-parent-container').scrollTop(height);
[0]是什麼意思?也有沒有參考/手動,我可以使用以防止問簡單的問題像這樣..
var height = $('.string-parent-container')[0].scrollHeight;
$('.string-parent-container').scrollTop(height);
這意味着匹配$('.string-parent-container')
$('.string-parent-container')
返回元素的集合與類string-parent-container
第一個元素。並且[0]
是有這個類的第一個元素。
返回一個jQuery對象(而不是一個HTMLElement)的另一種方法是:
$('.string-parent-container:eq(0)')
//使用這個類
這允許你這樣做
返回的第一個對象$('.string-parent-container:eq(0)').show()
$('.string-parent-container:eq(0)').addClass('newclass')
等
http://docs.jquery.com/Main_Page - 包含教程和API參考 – Ahatius