1.使用 js 判断并且跳转到别的 jsp 页面。
可以先写一个function,然后直接调用
$("#loginBtn").click(function (){ var type=$("#type").val(); var str1="顾客"; var str2="系统管理员"; var str3="房产经纪"; //JS校验可以直接用==来判断两个字符串是否相等 if(str1==type){ skip('UserLogin.jsp'); } else if(str2==type){ skip('GuanliLogin.jsp'); } else if(str3==type){ skip('AgentLogin.jsp'); } else{ $("#msg").html("出错了!!"); } }) //编写skip方法 function skip(a){ chloginForm.action=a; chloginForm.submit(); }
<button type="button" id="loginBtn">登录</button> <button type="button" onclick="skip('zhuce.jsp')">注册</button>
2.问题:从js跳转过来之后,数据怎么获得呢
解决方案:获取一下,应该要注意到的是,不能用 ${}因为这个获取的对象是域对象,这里并没有设立域对象。
3.
标签:function,管理,skip,笔记,else,var,jsp,房产,type From: https://www.cnblogs.com/hmy22466/p/16859484.html