为什么这不起作用?我在这里发疯,试图找到我可能出错的地方,但没有想到任何事情。仅在Chrome中测试。
var startString = "30.01.2017";
var endString = "31.01.2017";
// is OK
var startDate = moment(startString, "DD.MM.YYYY", 'bs',true).clone().toDate();
// breaks down
var endDate = moment(endtString, "DD.MM.YYYY", 'bs',true).clone().toDate();
// console dump
Uncaught ReferenceError: endtString is not defined
at HTMLDocument.<anonymous> (Kreiraj:1062)
at j (jquery.js:3094)
at Object.fireWith [as resolveWith] (jquery.js:3206)
at Function.ready (jquery.js:3412)
at HTMLDocument.I (jquery.js:3428)
我做错了什么?
答案 0 :(得分:2)
endtString
是一个拼写错误,应为endString
。
答案 1 :(得分:1)
你刚做了一个错字。只需将endtstring
更改为endstring
。