gpt4 book ai didi

php - 使用时间发布表单

转载 作者:行者123 更新时间:2023-11-29 04:49:40 25 4
gpt4 key购买 nike

我正在尝试制作一个使用时间发布的表格。我已经设法计算时间了。我想输入一个特定的时间来发布从 12:00 等。可能吗?

<html>
<head>

</head>
<body>
<span id="remain"></span>
<form action="3.php" method="post" id="form1" name="form1">
<input type="text" name="id">
<input type="submit" name="Go" value="submit">
</form>

<script type="text/javascript">
window.onload=counter;
function counter() {
seconds = 150;
countDown();
}

function countDown(){
document.getElementById("remain").innerHTML=seconds;
setTimeout("countDown()",1000);
if(seconds == 0) {
document.form1.submit();
}else {
seconds--;
}
}
</script>

最佳答案

这是通过查找当前时间完成的,然后将当前时间与您要发布表单的设置时间进行比较

查找当前时间

var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours;
currentHours = ( currentHours == 0 ) ? 12 : currentHours;

使用上面的代码,您可以找到当前时间,然后与特定时间进行比较。如果两个时间相等,则运行函数。

关于php - 使用时间发布表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13393659/

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