Jquery:使用countdownTimer获取意外的标记ILLEGAL

时间:2015-05-20 11:31:43

标签: javascript jquery

我无法理解以下代码中的错误。 BTW我正在使用jquery countdownTimer

我使用的库如下

http://harshen.github.io/jquery-countdownTimer/#display

$(function(){
  $("#counter").countdowntimer({
           hours : 3‚ // Here it is showing the error Unexpected token ILLEGAL
           minutes : 10‚
           size : "lg"
  });
});

1 个答案:

答案 0 :(得分:1)

我删除了空格并手动重新添加,您的代码现在正常运行

Working Demo

Broken Demo

$("#counter").countdowntimer({
    hours : 3,
    minutes : 10,
    size : "lg"
  });

某处隐藏着一个时髦的角色。我之前在从JSFiddle复制/粘贴

时已经看过这个