2013-11-14 138 views

回答

3

您需要的元素的可見height()比作scrollHeight,像這樣:

if ($('#foo').height() < $('#foo')[0].scrollHeight) { 
    alert('scrollable'); 
} 

Example fiddle

+0

謝謝,非常感謝。按我想要的方式工作。 –

+0

沒問題,很高興幫助 –

+0

謝謝,[在測試中使用這個技巧](http://stackoverflow.com/a/29052650/771848),工作完美。 – alecxe