js-useful-1

<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>添加普通验证</title>
<script type="text/javascript">
 function checkSubmit(){
  var name =  document.getElementById("name").value;
  if(""==name){
   alert("姓名不能为空");
   return false;
  }

  var code = document.getElementById("code").value;
  var regu =/^[A-Z]{2}$/;
  var re = new RegExp(regu);
  if(re.test(code)){
  }else{
   alert("请输入为2位大写字母的编号!");
   return false;
  }

  document.infoForm.action = "people_add2.action";  //是当前目录下的然后加上该地址,当前目录为http://192.168.1.75:8081/pages/;所以:http://192.168.1.75:8081/pages/people/people_add2.action
  //alert(document.infoForm.action);
  document.infoForm.action = "/people_add3.action";  //得到该服务目录加上该地址;即为http://192.168.1.75:8081/people_add3.action
  //alert(document.infoForm.action);
  
  if(confirm("确定提交吗?")){
   document.infoForm.submit();        //可以这样提交到某个地址
  }
 }

 function checkSubmit2(){
  var name =  document.getElementById("name2").value;
  if(""==name){
   alert("姓名不能为空");
   return false;
  }
  
  /****正则表达式开始****/
  var code = document.getElementById("code2").value;
  var regu =/^[A-Z]{2}$/;
  var re = new RegExp(regu);
  if(re.test(code)){
  }else{
   alert("请输入为2位大写字母的编号!");
   return false;
  }
  /****正则表达式结束****/

  document.infoForm2.action = "people_add2.action";  //是当前目录下的然后加上该地址,当前目录为http://192.168.1.75:8081/pages/;所以:http://192.168.1.75:8081/pages/people/people_add2.action
  //alert(document.infoForm.action);
  document.infoForm2.action = "/people_add3.action";  //得到该服务目录加上该地址;即为http://192.168.1.75:8081/people_add3.action
  //alert(document.infoForm.action);
  
  if(confirm("确定提交吗?")){
   document.infoForm2.submit();        //可以这样提交到某个地址
  }
 }

 function showGrade(){
  var identity =  document.getElementById("identity").value;
  if("2"==identity){
   document.getElementById("promptGrade").style.display ="block";
   document.getElementById("gradeTable").style.display ="block";
  }else{
   document.getElementById("promptGrade").style.display ="none";
   document.getElementById("gradeTable").style.display ="none";
  }
 }
 
 //跳转到某个地址.
 function toOtherPage(parm1,parm2){
  window.location="/people_query2.action?parm1="+parm1+"&parm2="+parm2;
 }

 //跳转到某个地址2.
 function toOtherPage2(parm1){
  window.navigate(parm1);
 }

 
</script>
</head>
<%
 String parm1 = "pram1aa";
%>
<body>
 <form action="" name="infoForm">
  <table>
   <tr>
    <td>姓名:</td>
    <td><input type="text"  id="name" name="name" value=""></td>
   </tr>
   
   <tr>
    <td>二位大写字母编号:</td>
    <td><input type="text"  id="code" name="code" value=""></td>
   </tr>
   
   <tr>
    <td>身份:</td>
    <td >
     <select id="identity" name="identity" οnchange="showGrade();"> 
      <option value="1">老师</option>
      <option value="2">学生</option>
     </select>
     <div id="promptGrade" style="display: none">
      <font style="color: red">还要选择选择年级</font> 
     </div>
    </td>
    
   </tr>
   
   <tr>
     <td colspan="2">
     <table style="display: none" id="gradeTable">
      <tr>
       <td>年级:</td>
       <td>
       <select id="grade" name="grade">
        <option value="1">一年级</option>
        <option value="2">二年级</option>
       </select>
       </td>
      </tr>
     </table> 
     </td>
    
   </tr>
   
   <tr>
    <td><input type="button" value="提交" οnclick="checkSubmit()"/></td>
   </tr>
  </table>
 </form>
 
 
 <form action="" name="infoForm2" οnsubmit="return checkSubmit2()">
  <table>
   <tr>
    <td>姓名2:</td>
    <td><input type="text"  id="name2" name="name2" value=""></td>
   </tr>
   
   <tr>
    <td>二位大写字母编号2:</td>
    <td><input type="text"  id="code2" name="code2" value=""></td>
   </tr>
   
   <tr>
    <td><input type="submit" value="提交2" /></td>
   </tr>
  </table>
 </form>
 
 <table>
  <tr>
   <td><input type="button" value="页面跳转1" οnclick="toOtherPage('aa','bb')"/></td>
  </tr>
  
  <tr>
   <td><input type="button" value="页面跳转2" οnclick="javaScript:window.location='/people_query2.action?parm1='+'<%=parm1%>' "/></td>
  </tr>
  
  <tr>
   <td><input type="button" value="页面跳转3" οnclick="toOtherPage2('people_add4.action');"/></td>
  </tr>
  
 </table>

</body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值