[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')
ETC