问答详情
源自:3-1 jQuery实现瀑布流布局图片定位

请问这是什么情况啊?

http://img.mukewang.com/57e531c600013cc808270375.jpg

// 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);

})

}


提问者:arpmaomao 2016-09-23 21:45

个回答

  • MrTreasure
    2016-09-24 13:58:13
    已采纳

    on事件在1.8以后才有,在此前用的是bing live等绑定方法,更新jquery

  • arpmaomao
    2016-09-24 00:24:55

    用$(document).ready(function(){ 瀑布流一切显示正常

    用//$(window).on("load" ,function(){ 显示不正常

  • MrTreasure
    2016-09-23 23:03:07

    亲检查一下你的jquery文件导入正确没有,还有就是可以这样写

    $(function(){


    });