ログインフォームをサーバーハンドラーに投稿するときに math.random nocache パラメータを送信する目的は何ですか?
var email = encodeURI(document.getElementById('emailLogin').value); var psw = encodeURI(document.getElementById('pswLogin').value); // URL リクエストに追加する乱数を設定します nocache = Math.random(); // URL 変数などのログイン変数を渡します http.open('get', 'login.php?email='+email+'&psw='+psw+'&nocache = '+nocache);