gpt4 book ai didi

java - 从 mysql 检索日期到 javascript 给出无效日期

转载 作者:行者123 更新时间:2023-11-29 13:21:36 26 4
gpt4 key购买 nike

这是代码和mysql表

Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/2a", "root", "root");
Statement st=con.createStatement();
ResultSet rsta=st.executeQuery("Select * from data");
while(rsta.next()) {
x14=rsta.getTime("strtime");
}
%>
<div id="TextBoxesGroup">
<input type="hidden" id="time" name="time" value="<%=x14%>"/>
</div>
<script>

$(document).ready(function(){
var dateString=$('#time').val();
var d1 = new Date(dateString);


var newTextBoxDiv = $(document.createElement('div'))
.attr("id", 'TextBoxDiv' + counter);
newTextBoxDiv.after().html('<div><label style="float:left;">'+d1+'</label>);
newTextBoxDiv.appendTo("#TextBoxesGroup");
</script>


+---------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+---------+-------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| date | date | YES | | NULL | |
| strtime | time | YES | | NULL | |
| endtime | time | YES | | NULL | |
| freq | varchar(30) | YES | | NULL | |
| inter | int(11) | YES | | NULL | |
+---------+-------------+------+-----+---------+----------------+

变量 d1(在数据库中保存为时间)给了我无效的日期。为什么会发生这种情况?我错过了什么吗?

如果需要更多信息,请告诉我,但请提供帮助。

最佳答案

有四种开始约会的方式:

new Date() // current date and time
new Date(milliseconds) //milliseconds since 1970/01/01
new Date(dateString)
new Date(year, month, day, hours, minutes, seconds, milliseconds)

上面的大多数参数都是可选的。不指定,会导致传入 0。

创建 Date 对象后,您可以使用多种方法对其进行操作。大多数方法允许您使用本地时间或 UTC(通用或 GMT)时间获取和设置对象的年、月、日、小时、分钟、秒和毫秒。

所有日期均以毫秒为单位,从 1970 年 1 月 1 日 00:00:00 世界时 (UTC) 开始计算,其中一天包含 86,400,000 毫秒。

发起约会的一些示例:

var today = new Date()
var d1 = new Date("October 13, 1975 11:13:00")
var d2 = new Date(1979,5,24)
var d3 = new Date(1979,5,24,11,33,0)

它的日期对象,所以你应该需要 dateString 而不是 timeString。

关于java - 从 mysql 检索日期到 javascript 给出无效日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20756526/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com