Jquery 使用on click(单击)时在铬中闪烁

Jquery 使用on click(单击)时在铬中闪烁,jquery,google-chrome,fadeout,jquery-isotope,Jquery,Google Chrome,Fadeout,Jquery Isotope,我正在建立一个网站,当你点击图像缩略图时,它会在淡出之前闪烁。。。但这只存在于谷歌Chrome中,而不存在于Firefox和Safari中 是什么导致了这一问题?我有没有办法解决这个问题 <div id="streamwrapper"> <div id="sidebar"> </div> <div id="stream"> &l

我正在建立一个网站,当你点击图像缩略图时,它会在淡出之前闪烁。。。但这只存在于谷歌Chrome中,而不存在于Firefox和Safari中

是什么导致了这一问题?我有没有办法解决这个问题

       <div id="streamwrapper">
            <div id="sidebar">  
            </div>
            <div id="stream">
                <article id="509">
                    <a class="ajaxed" href="#"><img src="#" alt="" /></a>
                </article>
           </div> 
      </div>

将Google Chrome从18.0.1025.165升级到21.0.1180.89版解决了这个问题。:-|-)

在Win7上,chrome 21.0.1180.89 m对我来说不会闪烁。使用chrome 21.0.1180.89,我看不到任何闪烁发生。您确定这不是您的internet连接吗?另外,您是否想过使用z索引更高的纯黑
div
来代替淡出
#streamwrapper
?(这样图像本身就不会褪色)嗯,真奇怪@阿伦:我需要页面的高度来适应新内容。@A.M.K.你也在Windows上吗?
$("a.ajaxed").on("click",function(event) {
        event.preventDefault();
        postid = $(this).parent().attr("id");
        $("#streamwrapper").fadeOut(1000, function(){
            $.ajax({
                type: "POST",
                dataType: "JSON",
                url: ajax_object.ajaxurl,
                data: ({
                    action : "get_all_images",
                    post_id: postid
                    }),
                success:function(data){
                    $("#post-container").append(data);
                },
                error:function(data){
                    console.log(data);
                }
            });
        });
        return false;
    });