登录操作(方法一:设置flag标志位) user_name="star"passwoed='123'passed_authentication=Falsecount=0for i in range(3): u_username=input("please input your username:") u_password=input("please input your password:") if u_username==user_name a…
一.取得地址栏后的参数 /** * 假设地址栏url为:login.do?username = "这里中文的话会是特殊字符组成的" */ //定义一个取得参数值的函数 function getParameter(b) { var c = new RegExp("[?&]" + b + "=([^&]+)", "i"), a = location.search.match(c); return a ? a[1]…