图像未在Android / IOS移动浏览器中加载

时间:2015-06-11 02:54:11

标签: android jquery ios ajax mobile

我的网站有问题。在我的头版中,我创建了具有同位素效应的loadmore prodjects功能。现在,当我使用Firefox,Chrome& amp; IE我可以看到所有的图像。但是当我在手机上测试它时,所有的图像都不会显示出来。

这里有一些我的加载代码。

$(window).scroll(function() {

        if($(window).scrollTop() + $(window).height() > $(document).height() - $("footer").height()){
            page= page+1;

            $.ajax({

                url: 'index.php?route=common/home/loadMoreProject',
                type: 'POST',
                dataType: 'json',
                data: {'page':page },
                beforeSend: function(){ $('#loadmore').hide(); },
                complete: function(){ },
                error: function(){ },
                success: function(data){

                    $html= '';

                    if(data.project){

                        data.project.forEach(function(item) {

                            $html+= '<article class="col-sm-2 col-md-4 col-lg-2  isotopeItem '+item.code_identifier+'" style="min-width: 100px; min-height: 100px" >';
                                                $html+= '<div class="portfolio-item">';
                                                    $html+= '<img src="'+item.image+'" alt="" />';
                                                    $html+= '<div class="portfolio-desc align-center">';
                                                        $html+= '<div class="folio-info">';
                                                            $html+= '<a href="'+item.href+'" class="">';
                                                                $html+= '<h5>'+item.project_name+'</h5>';
                                                            $html+= '</a>';
                                                        $html+= '</div>';
                                                    $html+= '</div>';
                                                $html+= '</div>';
                                            $html+= '</article>';

                        });
                    }   
                    $container.isotope('insert', $($html));
                    $('#loadmore').show();

                }

            });


        }
});

我不知道这是否是代码错误。你能帮我解决这个问题吗?

0 个答案:

没有答案