1

我使用 jquery 创建了倒数计时器,它在 mozila、chorme 中运行良好,但在 Internet Explorer 中无法运行;我的代码是这样的:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 <div>Minutes</div>
 <div>Seconds</div>

 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript" charset="utf-8"></script>
     <script src="http://jquery-countdown.googlecode.com/svn/trunk/js/jquery.countdown.js" type="text/javascript" charset="utf-8"></script>
 <script type="text/javascript">
   $(function() {
         $('#counter').countdown({
         image: 'digits.png',
             startTime: '25:30'
         });
     });
</script>

请帮我。

4

1 回答 1

0

您正在使用的某些语法在浏览器Countdown timer JS 中不受支持。IE 6.0所以,最好使用This CountDown Timer,因为它适用于IE 9.0其他浏览器

于 2012-11-16T06:40:43.133 回答