基本的なログインフォームが設定されており、ajaxリクエストを使用して2つの変数(ログイン+パスワード)を別のページに送信し、それに応じてステータスをチェックして返します。私のajaxコード
$('form.login_form').on('submit', function(){
var that = $(this),
url = "textlogin.php",
type = that.attr('method'),
data = {};
that.find('[name]').each(function(index, value){
var that = $(this),
name = that.attr('name'),
value = that.val();
data[name] = value;
});
$.ajax({
url: url,
type: type,
data: data,
success: function(response){
if(response==""){
$('#login_err').html("its null");
}else{
$('#login_err').html(response);
}
}
});
return false;
});
は機能しておらず、success
関数は常に null を返します。コードは、私が使用ajax
しjquery dialog
てログインするまでは正常に機能していました。私が試したこと: 1. Content-type
2. を設定しdataType
ます。