由买买提看人间百态

topics

全部话题 - 话题: eventdate
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
i**********p
发帖数: 1341
1
来自主题: Pingpong版 - usatt league网站的bug
我要输入公司league 1/31/2014的一部分成绩,
结果老是说Event Date cannot be a future date
只好翻了下source 貌似是这样:
lastEvent="1/31/2014"
eventDate="1/31/2014"
curDate="2/1/2014"
if(dateStringCompare(lastEvent, eventDate) <= 0) {
if(dateStringCompare(eventDate, curDate) <= 0)
document.frmSubmitResults.submit();
else
alert("Event Date cannot be a future date");
}
估计dateStringCompare默认把2/1/2014 interpret成1月2号了?
fyi:
dateStringCompare("1/31/2014", "2/1/2014")
answer: 1
dateStringCompare("1/31/2014", "2/31/2014")
... 阅读全帖
l*b
发帖数: 5305
2
来自主题: Pingpong版 - usatt league网站的bug
只要是约定俗成的,0 index 或是 1 index 会有什么问题?javascript最基本的库函
数会有像你说的那样的bug,实在是匪夷所思。
我试了usatt的代码,用的Safari,没有什么问题。你用的什么浏览器?虽然也很匪夷
所思,会不会是你的浏览器的javascript的intepreter有bug?
你可以试一下下面的代码,我从usatt网页上copy来的,如果你按button之后,在对话
框上看到的不是今天的日期,那就是你的浏览器有问题,