一些时间比较及转换的有关问题
一些时间比较及转换的问题
需求输入两个时间,只需要HH:MM 即小时和分钟
我是用 进行输入
例如输入 11:30 12:30 那么如何将这两个转换为时间格式做比较呢?百度了一堆都是天与天之间比较的
下面是我模仿着写的JS,转换时间那里肯定是有问题的,要如何改写呢?
- JScript code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->function comparetime(){var starttime = document.getElementById("starttime").value;var stoptime = document.getElementById("stoptime").value;var time1=(starttime).toTimeString(); //应该是这里处理的方法有问题var time2=(stoptime).toTimeString();if(starttime > stoptime){ alert("输入的时间有误");}else { alert("正确");}}
还有一个问题是,我的数据库里有一个字段searchtime 字段类型为datetime,
我通过PHP页面对这个表进行update的操作,我想谁设定在这个searchtime+12小时之后,就不能通过PHP
页面进行update操作了 我知道加个判断就可以了,通过$searchtime=$row['$searchtime'] 获取时间也没问题,就是不知道
$searchtime如何加这12个小时,也是时间格式转换的问题
------解决方案--------------------
可以这么写
- JScript code
function comparetime(){var starttime = document.getElementById("starttime").value;var stoptime = document.getElementById("stoptime").value;var t1=starttime.split(':');var t2=stoptime.split(':');var time1=new Date(75, 1, 16, t1[0], t1[1], 0); var time2=new Date(75, 1, 16, t2[0], t2[1], 0);if(starttime > stoptime){ alert("输入的时间有误");}else { alert("正确");}}<br><font color="#e78608">------解决方案--------------------</font><br>1、
- JScript code
s1 = '11:30';s2 = '12:30';d = new Date();t = s1.split(/:/);d.setHours(t[0], t[1]);t1 = d.getTime();t = s2.split(/:/);d.setHours(t[0], t[1]);t2 = d.getTime();if(t1 > t2) alert('ok');else alert('error');<br><font color="#e78608">------解决方案--------------------</font><br>duibi 方法就不要alert了,直接返回false或 true就行了<br><br>if(starttimes >= stoptimes){<br> alert("输入时间有误");<br> return false;<br>}<br>else {<br> return true;<br>}<br>function setSubmit(){<br> ...............这里验证ACE_HIDDEN_TABLE 下的两个input 框.................<br> var inputs=document.getElementById('newTB').getElementsByTagName('input');<br><br> for(var i=0;i<inputs.length></inputs.length> if(!duibi(inputs[i].value,inputs[i+1].value)){<br> alert('输入有误');<br> return false;<br> }<br> }<br> return true;<br>}<br><br>然后在你的form中

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

alert implements line breaks using the br tag.

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

getElementById can obtain the corresponding HTML element through the id attribute of the element, and then operate and modify it conveniently. Whether it is to dynamically change the content and style of an element or add an event listener, getElementById is a very commonly used method.

Solution to garbled alert code in JavaScript: 1. Add "charset=utf-8"" to the <head> part of HTML; 2. Add "charset="gb2312" or "charset="utf-" to the <script> tag 8""; 3. Change the saving encoding of the js external script to utf8.

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没问题。

图片消失如何解决先是图片文件上传$file=$_FILES['userfile']; if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'

图片消失如何解决先是图片文件上传$file=$_FILES['userfile']; if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'
