我无法理解下面的代码出了什么问题。 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"
});
});
最佳答案
我删除了空白并手动重新添加了空白,您的代码现在可以正常工作了
Working Demo
Broken Demo
$("#counter").countdowntimer({
hours : 3,
minutes : 10,
size : "lg"
});
某个地方一定藏着一个时髦的人物。从JSFiddle复制/粘贴之前,我已经见过
关于javascript - jQuery:使用countdownTimer获取意外 token ILLEGAL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30348426/