将日期从 asp 传递到 javascript 函数
我正在 ASP vbscript 中从数据库检索日期,并希望将其传递给 JavaScript 函数(并以日期格式使用它)。
我尝试将日期转换为 ASP 中的 CDate,将其传递给我的 javascript 函数,并使用 Date(ASPDate) 将其创建为 javascript。这样做时,我总是收到错误“参数列表后缺少 )”,因为日期和时间之间有空格。
相关代码:
CreateTimeStart(" & dteActualStartTime & ")
function CreateTimeStart(dteActualStartTime){
timestart = Date(dteActualStartTime);
}
I am retrieving a date from a database in ASP vbscript and want to pass it on to a javascript function (and use it in date format).
I tried converting my date to a CDate in ASP, passing that on to my javascript function and making a javascript out of it by use of the Date(ASPDate). When doing that, I always get the error "missing ) after argument list" since there is a space between the day and the time.
relevant code:
CreateTimeStart(" & dteActualStartTime & ")
function CreateTimeStart(dteActualStartTime){
timestart = Date(dteActualStartTime);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Date.parse
方法:https:// /developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse
Use the
Date.parse
method:https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse
您无法知道客户端计算机上的日期设置,因此您不能依赖它们与服务器上的日期设置相同。
一种解决方法是传递自 1970 年 1 月 1 日以来经过的毫秒数来创建日期实例:
这样您就不必关心客户端计算机是否获得了
dd/mm/yyyy
、mm/dd/yyyy
或其他任何内容 - 您传递纯数字并让客户端计算机解析它。You can't know the date settings on the client machine, so you can't depend on them to be the same as on your server.
One way around is to pass the amount of miliseconds that passed since January 1st 1970 to create the date instance:
This way you don't care if the client machine got
dd/mm/yyyy
,mm/dd/yyyy
or anything else - you pass pure number and let the client machine parse it.