我无法理解以下代码中的错误。 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"
});
});
答案 0 :(得分:1)
我删除了空格并手动重新添加,您的代码现在正常运行
$("#counter").countdowntimer({
hours : 3,
minutes : 10,
size : "lg"
});
某处隐藏着一个时髦的角色。我之前在从JSFiddle复制/粘贴
时已经看过这个