表单的焦点顺序和对应enter键提交 - html/css语言栏

表单的焦点tap键顺序:tabindex决定,如果值缺省,择按顺序
 用户:<input name="Text1" type="text" tabindex="1" />
 密码:<input name="Password1" type="password" tabindex="2" >
对应onsubmit事件即可:
[html] 
 <form action="<%=basePath%>common/userlogin.action" method="post" name="loginform" id="loginform" onsubmit="return subUser();"> 
<input src="<%=basePath%>scxt/image/home08.jpg" type="image"/> 
</form> 

注意return的用法。
js: www.2cto.com
[javascript] 
function subUser(){ 
          var username=$("#uname").val(); 
          var password=$("#upwd").val(); 
          var checkCode=$("#checkCode").val(); 
          if(username==""){ 
            $("#msg").html("请输入用户名!"); 
            $("#uname").focus(); 
             return false; 
          }else if(password==""){ 
            $("#msg").html("请输入密码!"); 
            $("#upwd").focus(); 
              return false; 
          }else if(checkCode==''){ 
            $("#msg").html("请输入验证码!"); 
            $("#checkCode").focus(); 
             return false; 
          }else{ 
            document.loginform.submit(); 
             return false; 
          } 
          return false; 
    } 

表单获取焦点事件:
$(”#nameInput”).focus()

返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册