10
09/2014
jquery window document return same value
做无限翻滚ajax。
突然发现 $(window).height() 返回值 和 $(document).height() 一样!
折腾后发现,With no doctype tag chome reports the same value for both calls.- 没有指定 doctype 的页面 $(window).height() 返回值的确有误!。
再细看,原来 jade(后端)不支持 !!!5 所以改写为 doctype html5 后面多了个5!!!
on(‘scroll’) 和 on(‘mousewheel’)
当内容少的时候,on(‘scroll’) 触发!因为内容不够翻滚。用 on(‘mousewheel’) 可以保证触发滚轮,但是不能拖拽右侧滚动条!