📄 sfmxjl.php
字号:
<?
include "../check.php"
?>
<?
include "../sql.php"
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>List/Menu</title>
<script language="JavaScript">
function x(obj){
var xxx=false;
if(Juge(obj)){
if(numericCheck()){
xxx=true;
}
}
return xxx;
}
function numericCheck(){
var x=true;
var nr1=document.form1.lsh.value;
var flg=0;
var str="";
var spc=""
var arw="";
for (var i=0;i<nr1.length;i++){
cmp="0123456789"
tst=nr1.substring(i,i+1)
if (cmp.indexOf(tst)<0){
flg++;
str+=" "+tst;
spc+=tst;
arw+="^";
}
else{arw+="_";}
}
if (flg!=0){
if (spc.indexOf(" ")>-1) {
str+="和空格";
}
alert("请正确填写用户流水号!");
+str;
form1.lsh.focus();
x=false;
}
return x;
}
function Juge(theForm)
{
if (theForm.qsrq.value =="")
{
alert("请填起上始日期!");
theForm.qsrq.focus();
return (false);
}
if (theForm.qssj.value =="")
{
alert("请填上起始时间!");
theForm.qssj.focus();
return (false);
}
if (theForm.zzrq.value =="")
{
alert("请填上终止日期!");
theForm.zzrq.focus();
return (false);
}
if (theForm.zzsj.value =="")
{
alert("请填上终止时间!");
theForm.zzsj.focus();
return (false);
}
if ((theForm.lsh.value =="")&&(theForm.select2.value ==""))
{
alert("请填写查询条件!");
theForm.lsh.focus();
return (false);
}else{
return true;
}
}
</script>
</head>
<Script Language="javaScript" src='../divdate.hs'></Script>
<body>
<p> </p>
<p align="center">收费明显记录查询</p>
<form name="form1" method="post" action="sfmxjlb.php" onsubmit="javascript:return x(this);">
<table border="1" align="center">
<tr>
<td rowspan="2">查询日期段</td>
<td>起始日期</td>
<td>
<input name="qsrq" type="text" id="qsrq2" size="10" readonly onClick="seeDate('qsrq',0);"></td>
<td colspan="2">起始时间</td>
<td>
<input name="qssj" type="text" id="qssj2" size="8" readonly onClick="seeTime('qssj',0);"></td>
</tr>
<tr>
<td>终止日期</td>
<td><input name="zzrq" type="text" id="zzrq2" size="10" readonly onClick="seeDate('zzrq',0);"></td>
<td colspan="2">终止时间</td>
<td><input name="zzsj" type="text" id="zzsj2" size="8" readonly onClick="seeTime('zzsj',0);"></td>
</tr>
<tr>
<td rowspan="2">查询条件</td>
<td> 用户流水</td>
<td colspan="4"><input name="lsh" type="text" id="lsh" size="10"></td>
</tr>
<tr>
<td> 操作员</td>
<td colspan="4"><div id="DateHidden"><select name="select2" id="select2">
<option value=""></option>
<? $sql="select * from admin";
$relust=mysql_query($sql);
echo mysql_error()."<br>";
while ($row=mysql_fetch_row($relust))
{
echo '<option value="'.$row[2].'">'.$row[2].'</option>';
}
?>
</select></div></div></td>
</tr>
</table>
<p align="center">
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
</p>
</form>
<p align="center"> </p>
<p> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -