0

我似乎无法弄清楚为什么我的代码在 IE 中根本不起作用。它在所有其他浏览器中都可以正常工作。有人能发现问题吗?

$(document).ready(function (){
    var timerId = 0;
    $("#timerwrap").ready(function(){
        $("#timerwrap").html("Please wait <span style='font-weight: bold !important;' id='show-time'>4</span> seconds");
        console.log(timerId)

        if(timerId == 0){
            timerId = window.setInterval(function() {
            var timeCounter = $("#show-time").html();
            var updateTime = parseInt(timeCounter,10) - 1;
            $("#show-time").html(updateTime);

            if(updateTime <= 0){
               clearTimeout(timerId);

               $("#ltext").fadeOut('fast');
               $("#closeme").delay(600).fadeIn('fast');

            }
         }, 1000);
      }
   });

});


$(document).ready(function () {
   $("#closeme").click(function() {

      $("#rf").css("display", "none");
      $("#toppy").css("display", "none");
   });
});

$(document).ready(function () {
   $("#closelogo").click(function() {
      $("#rf").css("display", "none");
      $("#toppy").css("display", "none");
   });
});

任何帮助将不胜感激,谢谢。

4

1 回答 1

1

IE 与console.log 中断。删除console.log(timerId),你应该没问题

于 2012-07-23T09:30:51.680 回答