⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cxzw.php

📁 辅助radius软件的管理程序web平台下的程序代码自己还没有测试过
💻 PHP
字号:
<?
include "../check.php"
?>
<?
include "../sql.php" 
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</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.rq.value =="")&&(theForm.sj.value !=""))||((theForm.rq.value !="")&&(theForm.sj.value =="")))
			{
			alert("请完整填写时间段的日期和时间!");
			theForm.sj.focus();
			return (false);
			}
			if (theForm.lsh.value =="")
			{
			alert("请填写用户流水号!");
			theForm.lsh.focus();
			return (false);
			}
			else
			{return true;
			}
			}
			</script>
</head>

<body>
<Script Language="javaScript" src='../divdate.hs'></Script>
<div align="center">
  <p>查询被冲销用户</p>
  <form name="form1" method="post" action="cxzwb.php" onsubmit="javascript:return x(this);">
    <table border="1">
      <tr> 
        <td><div align="left">距今时间段:</div></td>
        <td><div align="left">日期</div></td>
        <td> <div align="left"> 
            <input name="rq" type="text" id="rq" size="10" readonly onclick="seeDate('rq',0);">
          </div></td>
        <td><div align="left">时间</div></td>
        <td> <div align="left"> 
            <input name="sj" type="text" id="sj" size="8" readonly onclick="seeTime('sj',0);">
          </div></td>
      </tr>
      <tr> 
        <td><div align="left">用户流水号:</div></td>
        <td colspan="3"> <div align="left"> 
            <input name="lsh" type="text" id="lsh" size="18">
          </div></td>
        <td><input type="submit" name="Submit" value="提交"></td>
      </tr>
    </table>
  </form>
  <p>&nbsp; </p>
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -