最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
利用JAVASCRIPT实现时间段的查询
时间:2022-06-30 09:43:22 编辑:袖梨 来源:一聚教程网
以后,要是做时间段的查询就方便了,不过就是程序有点多,呵呵!
希望大家能帮我测试一下,输入的时间格式是1999-01-01或2000-10-01或2000-10-10,即月份和时间必须是两位,为了方便大家测试,把所有文件放在这里,只要运行time_main.asp就可以了,多谢了!
time_main.asp
<%@ Language=VBScript %>
>
您的浏览器不支持FRAMES
time.asp
<%@ Language=VBScript %>
<%
starttime = Request.Form("starttime")
endtime = Request.Form("endtime")
Response.Write starttime&"
"
Response.Write endtime&"
"
%>
请点击“查询”按钮
time_search.asp
<%@ Language=VBScript %>
希望大家能帮我测试一下,输入的时间格式是1999-01-01或2000-10-01或2000-10-10,即月份和时间必须是两位,为了方便大家测试,把所有文件放在这里,只要运行time_main.asp就可以了,多谢了!
time_main.asp
<%@ Language=VBScript %>
>
time.asp
<%@ Language=VBScript %>
<%
starttime = Request.Form("starttime")
endtime = Request.Form("endtime")
Response.Write starttime&"
"
Response.Write endtime&"
"
%>
请点击“查询”按钮
time_search.asp
<%@ Language=VBScript %>