2012-05-05 12 views
0

[0]とはどういう意味ですか?また、私はこのような単純な質問を予防するために使用することができます参照/マニュアルがあります。..

var height = $('.string-parent-container')[0].scrollHeight; 
$('.string-parent-container').scrollTop(height); 
+1

http://docs.jquery.com/Main_Page - チュートリアルとAPIリファレンスが含まれています – Ahatius

答えて

3

それは$('.string-parent-container')

$('.string-parent-container')に一致する最初の要素はクラスstring-parent-containerを持つ要素のコレクションを返します。意味します[0]は、このクラスを持つ最初の要素です。 jQueryオブジェクトを返します

1

別の方法は、(のHTMLElementは対照的に)次のようになります。

$('.string-parent-container:eq(0)') //

そのクラスで最初のオブジェクトを返します。これは、あなたが

ような何かを行うことができます

$('.string-parent-container:eq(0)').show()

$('.string-parent-container:eq(0)').addClass('newclass')

など

関連する問題