私はそのようなチェックボックスを持っています
<input name="notify" type="checkbox" id="notify" class="notify" />
私はそのようにajax呼び出しを使用しています
$("form#submit").submit(function() {
// we want to store the values from the form input box, then send via ajax below
var username = $('#username').attr('value');
var email = $('#email').attr('value');
var password = $('#password').attr('value');
var cpassword = $('#cpassword').attr('value');
var notify = $('#notify').attr('value');
var session_user_id = $('#session_user_id').attr('value');
$.ajax({
type: "POST",
url: "../../includes/editprofile.php?",
data: "username="+ username+
"&email="+ email+
"&password="+ password+
"&cpassword="+ cpassword+
"¬ify="+ notify+
"&session_user_id="+ session_user_id,
success: function(data){
$('div.success').fadeIn();
$('div.success').html(data);
}
});
return false;
});
私のeditprofile.phpファイルでは、フォームを送信した後、ボックスをチェックするかどうかに関係なく、常に「オン」であっても、echo'n $notifyで値を確認します。手がかりはありますか?