1.login.jsp:代码片段
1 <td align="left"><input type="image"
2 src="/images/btn_enter.gif" name="image"></td> //说明:这里是一个图片,点击图片之后提交页面(具体点说是会员登陆)————但是对这段代码有点不清楚,一般情况下,提交页面应该是提交按钮(<input type="submit"/>);即使要设置按钮的背景图片也可以这样<input type="submit" src="url";当然还可以用js/jquery对它进行处理然后提交页面,但问题是没有任何js代码对这个标签进行处理,那么这里到底是如何提交页面的呢,或者说,还有什么其他的方式提交页面么?
2.用chrome调试的时候,与login.jsp页面相关的js代码是:
a.login.jsp里面的js
1 <script type="text/javascript">
2 <!--
3 var redirectUrl="<%=session.getAttribute(Constants.C.VAR_REDIRECT_URL)%>";
4 jQuery(function() {
5 jQuery("#txt_uid").focus();
6 });
7 //-->
8 </script>
b.login.js
1 /**
2 * 登录处理
3 */
4 jQuery(function($){
5 $("#uid").val("Uid").mouseover(function (){ //1.这里设置断点,会执行到该断点!
6 if(!$(this).attr("changed")){
7 $(this).val("");
8 }
9 }).mouseout(function(){
10 if(!$(this).attr("changed")){
11 $(this).val("Uid");
12 }
13 }).keypress(function(){
14 $(this).attr("changed",true);
15 });
16 $("#pwd").val("Password").mouseover(function (){
17 if(!$(this).attr("changed")){
18 $(this).val("");
19 }
20 }).mouseout(function(){
21 if(!$(this).attr("changed")){
22 $(this).val("Password");
23 }
24 }).keypress(function(){
25 $(this).attr("changed",true);
26 });
27 });
28
29 function doLogin(form){
30 var param=jQuery(form).serialize()+"&json=true"; //2.这里设置断点,不会被执行————因为我搜索的时候,也确实没有看到有哪个地方调用了doLogin函数
31 var x=$("#span_loginErrMsg");
32 x.html("Logging in...");
33 $.post(form.action,param,function(json){
34 if(json.success){
35 if("null"!=redirectUrl){
36 window.location=redirectUrl;
37 }else{
38 $("#div_login").load("/inc/login.jsp");
39 }
40 }else{
41 var html="";
42 switch(json.errCode){
43 case -1: html="Can't Connect to Database"; break;
44 case -2: html="No Related Customer Found!"; break;
45 case -3: html="Invalid Uid / Pwd, or account is locked"; break;
46 case -10: html="Signin attemps too many times!"; break;
47 case -99: html="Signin attemps too many times!"; break;
48 }
49 x.html("<span style='color:red'>"+html+"</span>");
50 }
51 },"json");
52 return false;
53 }
添加回答
举报
0/150
提交
取消