$(function(){ $('.pwEye').on('click',function(event){ event.preventDefault(); if($(this).children('.fa-eye').length){ $(this).siblings('input').attr('type','password'); $(this).children().addClass('fa-eye-slash').removeClass('fa-eye'); }else{ $(this).siblings('input').attr('type','text'); $(this).children().addClass('fa-eye').removeClass('fa-eye-slash'); } }); }); //登入驗證碼重新取得 function reSIImage(){ var d1 = new Date(); var when = d1.getTime(); document.getElementById('siimage').src = "vendor/securimage/securimage_admin_show.php?sid=" + when; } //登入資料 function loginDataCheck(){ //帳號 if($("form#member_login_form #user_account").val() == ""){ alert("請輸入帳號!"); $("form#member_login_form #user_account").focus(); return false; } //密碼 if($("form#member_login_form #password").val() == ""){ alert("請輸入密碼!"); $("form#member_login_form #password").focus(); return false; } //驗證碼 if($("form#member_login_form #check_code").val() == ""){ alert("請輸入驗證碼!"); $("form#member_login_form #check_code").focus(); return false; } }