You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
$(document).ready(function () {
|
|
$(document).off('click').on('click','.choose-child',pChange);
|
|
$(document).off('click',showpm).on('click','.pm',showpm);
|
|
$(document).off('click',showpw).on('click','.pw',showpw);
|
|
$('.sm-input-style').off('click').on('click',isEmpty);
|
|
})
|
|
function pChange(){
|
|
$('.choose-child').each(function () {
|
|
$(this).css({'background-color':'','color':'','border-radius':
|
|
''});
|
|
})
|
|
$(this).css({'background-color':' #e24f46','color':'white','border-radius':
|
|
'5px'});
|
|
}
|
|
function showpm() {
|
|
$('.personal-msg-frame').css('display','block');
|
|
$('.change-pw-frame').css('display','none');
|
|
}
|
|
function showpw() {
|
|
$('.personal-msg-frame').css('display','none');
|
|
$('.change-pw-frame').css('display','block');
|
|
}
|
|
function isEmpty(e)
|
|
{
|
|
var isem=false;
|
|
$('.pw-input-style').each(function () {
|
|
if($(this).val().length<=0)
|
|
{
|
|
e.preventDefault();
|
|
alert($(this).attr('name')+'不能为空');
|
|
isem=true;
|
|
return false;
|
|
}
|
|
}
|
|
)
|
|
if($('.pw-input-style').eq(1).val()!=$('.pw-input-style').eq(2)
|
|
.val()&&!isem)
|
|
{
|
|
e.preventDefault();
|
|
alert('两次密码不同');
|
|
return false;
|
|
}
|
|
} |