我想限制列表中元素的数量。我想动态设置元素的数量。
我的第一种方法如下:
var winHeight = $(window).height() ;
var listHeight = $('.listElement').height() * $('.listElement').length ;
if ( listHeight > (winHeight * 0.66) ){
// If the list is larger than 66% of the screen, cut off those elements
// and provide buttons to flick through the list
}
它看起来不太好,我不确定这是否是正确的编码方式。
有更好的方法吗?