将日期从 asp 传递到 javascript 函数

发布于 2025-01-07 04:43:40 字数 380 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盗心人 2025-01-14 04:43:40

使用 Date.parse 方法:

CreateTimeStart('<%= dteActualStartTime %>');

function CreateTimeStart(dteActualStartTime){
    var timestart = Date.parse(dteActualStartTime);
}

https:// /developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse

Use the Date.parse method:

CreateTimeStart('<%= dteActualStartTime %>');

function CreateTimeStart(dteActualStartTime){
    var timestart = Date.parse(dteActualStartTime);
}

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse

提笔书几行 2025-01-14 04:43:40

您无法知道客户端计算机上的日期设置,因此您不能依赖它们与服务器上的日期设置相同。

一种解决方法是传递自 1970 年 1 月 1 日以来经过的毫秒数来创建日期实例:

<script type="text/javascript">
    var dteActualStartTime = new Date(<%=(DateDiff("s", "1/1/1970", dteActualStartTime)) * 1000%>);
    alert("date from server: " + dteActualStartTime);
</script>

这样您就不必关心客户端计算机是否获得了 dd/mm/yyyymm/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:

<script type="text/javascript">
    var dteActualStartTime = new Date(<%=(DateDiff("s", "1/1/1970", dteActualStartTime)) * 1000%>);
    alert("date from server: " + dteActualStartTime);
</script>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文