Web サイトの AJAX ログイン フォームを作成しています。ただし、jQuery のバグと思われるものに遭遇しました。
コードサンプル:
<!DOCTYPE html>
<html>
<head>
<title>Log In</title>
</head>
<body>
<div class="errors"></div>
<input type="username" placeholder="username">
<input type="password" placeholder="password">
<input type="submit" value="Log In">
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script>
$('input[type=submit]').click(function(){
$(".errors").load(window.location.protocol + "//" + window.location.host + "?username=" + $("input[type=username]").val() + "&password=" + $("input[type=password]").val());
return false;
});
</script>
</html>
サーバー側の問題ではないことはわかっています。の戻り値$("input[type=username]").val()
はundefined
であり、 の戻り値は$("input[type=password]").val()
入力の値です。よろしくお願いします!:)