xmlHttp.onreadystatechange = function(){HandleRequest(xmlHttp, "要素 ID")}; null);
コードは次のとおりです:
$(document).ready(function(){
$("#userpass").blur(function(){
varpassword=$("#userpass").val( );
var name=$("#username").val();
if(password==""||password==null){
$("#pass").html ("パスワードを入力してください! ");
b=false
}else if(!/^[a-zA-Z0-9_ ] {6,16}$/.test(password)){
$("#pass").html("入力形式が正しくありません。パスワードは次のとおりです。少なくとも 6 桁の数字または文字");
b=false;
}else{
$.get("LoginAjaxPassword",{"userpass":encodeURI(encodeURI(password)),"ユーザー名": encodeURI(encodeURI(name))},function(response){
$("#pass").html(response);
if(response=="" "√" ""){
b=true;
}
});
}
return b;
});
$("#login-submit").click(function(){
var autologin=document.getElementById("autologin").checked;
if(a&&b){
//if ($("#autologin").attr("checked")==true){
if(autologin==true){
//${"#login-user-form"} .attr( "action","AutoLogin");
//$("#login-user-form").submit();
document.form.action="AutoLogin"; .form.submit();
}else{
//${"#ログインユーザーフォーム"}.attr("アクション","ログイン");ログインユーザー -form").submit();
document.form.action="ログイン";
document.form.submit();
}
} else{}
});
});