// JavaScript Document
$(window).on('load',function(){
waterfall();
})
function waterfall(){
var $boxs=$('#main>div');
var w=$boxs.eq(0).outerWidth();
var cols = math.floor($(window).width()/w)
$('#main').width(w*cols).css('margin','0 auto')
var hArr=[];
$boxs.each(function(index,value){
console.log(index);
})
}
on事件在1.8以后才有,在此前用的是bing live等绑定方法,更新jquery
用$(document).ready(function(){ 瀑布流一切显示正常
用//$(window).on("load" ,function(){ 显示不正常
亲检查一下你的jquery文件导入正确没有,还有就是可以这样写
$(function(){
});