0

我在页面中有以下代码;

$(document).ready(function() {
    window.setInterval(function(){
        $("#customers, td, #span").each(function(){
            if($(this).children("span").attr("alt")!=null)
                var dt=new Date($(this).children("span").attr("alt").split(",")[3]).getTime();
                    if(dt>$.now()-10*1000){ //am i right here??
                        console.log("animating");
                        $(this).parent().fadeOut("slow");
                        $(this).parent().fadeIn("slow");
                    }        
       });
    },1000);
});

此代码在 chrome 上运行良好,但在 firefox 上不起作用;火狐说TypeError: $(...).each is not a function

谁能帮我??

4

1 回答 1

0

看起来new Date()在 Firefox 中不起作用。

日期是;

new Date("2013-04-07 15:39:17");

我将其更新为;

new Date("2013/04/07 15:39:17");
于 2013-04-07T13:56:01.697 回答