Web
weixin_44147014
这个作者很懒,什么都没留下…
展开
-
resetpwd.js
$().ready(function(){ var email = getUrlParam("email"); $("#email").html(email); // 获取验证码 $(".getcode").click(function(){ if(timmer==null){ coldtime = 60; timmer = setInterval(countDown,1000); }原创 2021-11-10 18:00:34 · 76 阅读 · 0 评论 -
login.js
login.js $().ready(function(){ $("#login").css("background-color","teal"); $("#login").css("color","white"); // 登录判断 const token = localStorage.getItem("token"); if(token){ window.location.href = "./index.html"; } $原创 2021-11-10 17:01:39 · 529 阅读 · 0 评论