之前为了得到div的scrollHeight的值,
一直写法是这样的:
$('#box')[0].scrollHeight;
今天我知道了另外一个方法:
$('#box').prop('scrollHeight');
注意:
$('#box').arrt('scrollHeight');
这个写法是undefined值
一直写法是这样的:
$('#box')[0].scrollHeight;
今天我知道了另外一个方法:
$('#box').prop('scrollHeight');
注意:
$('#box').arrt('scrollHeight');
这个写法是undefined值