有人能告诉我为什么在下面的代码的第5行使用数组索引吗? #agree 指的是一个复选框, # terms 是指一个文本框。 目的是确定用户是否在单击复选框之前滚动到文本框底部。 谢谢 。
$(document).ready(function() {
$( #agree ).attr( disabled , disabled );
$( #terms ).scroll(function() {
var textarea_height = $(this)[0].scrollHeight;
var scroll_height = textarea_height - $(this).innerHeight();
var scroll_top = $(this).scrollTop();
if (scroll_top == scroll_height){
$( #agree ).removeAttr( disabled );
}
});
});