1

我正在尝试使用 javascript 将本地时间插入数据库。谁能帮我?您能否查看名为 member.class.php 的文件,请让我知道我必须将 javascript 代码放在哪里...https://www.dropbox.com/sh/lfef67brewx7rub/wYRP72bDh7

4

5 回答 5

0

它非常简单的人......试试这个

var milliseconds = new Date().getTime();

它会给你以毫秒为单位的时间,或者你可以使用

new Date().getTime();

如果你想在 unix(linux) 时间戳中使用它,然后像这样使用

var unix = Math.round(+new Date()/1000);   it will also give you in seconds
于 2013-02-08T11:54:12.597 回答
0
var currentdate = new Date(); 
var datetime = "Date n Tym : " + currentdate.getDate() + "/"
            + (currentdate.getMonth()+1)  + "/" 
            + currentdate.getFullYear() + " @ "  
            + currentdate.getHours() + ":"  
            + currentdate.getMinutes() + ":" 
            + currentdate.getSeconds();
于 2013-02-08T12:00:04.510 回答
0

在 Javascript 中:

    var d = new Date();
    var date_with_time = d.getDate()+"-"
                        +d.getMonth()+1+"-"
                        +d.getFullYear()+" "
                        +d.getHours()+" "
                        +d.getMinutes()+" "
                        +d.getSeconds();

在 PHP 中,最好的方法是创建timeDATETIME类型并设置默认值CURRENT_TIMESTAMP。无需通过 Javascript 手动插入。

于 2013-02-08T11:56:50.767 回答
0

使用 JavaScript 格式化时间和日期的 10 种方法

看到这个答案

于 2013-02-08T12:15:00.843 回答
0

DB 像 js 中的时间戳:

var timestamp = "" + d.getFullYear()
                    + ("0" + (d.getMonth()+1)).slice(-2)
                    + ("0" + d.getDate()).slice(-2) + "-"
                    + ("0" + d.getHours()).slice(-2)
                    + ("0" + d.getMinutes()).slice(-2)
                    + ("0" + d.getSeconds()).slice(-2);

在此之后,例如,timestamp="20160408-​​134304"

于 2016-04-08T11:43:32.273 回答