您的位置:首页 > 其它

快速登录与普通登录方式切换

2016-07-28 11:51 309 查看
$(function(){
<!--普通登录方式跟快捷登录方式切换-->
var phone_login_text = "手机快速登录";
$(".tcy_login .t_l_ways .login_way").click(function(){
if($(this).text() == phone_login_text){
$(".tcy_login .t_l_form .common_login").hide();
$(".tcy_login .t_l_form .phone_login").show();
$(this).text("账号密码登录");
}else{
$(".tcy_login .t_l_form .phone_login").hide();
$(".tcy_login .t_l_form .common_login").show();
$(this).text("手机快速登录");
}
});
})


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: