$(document).ready(function(){
$('#send').click(function() {
var names = $('#appontment_form').serialize();
//this is how my names variable look like
//doctor=Dr.Fathmath+Shahuda&date=2013-02-27&time=1900+-+1700&phone=
var doc = $(names).filter('doctor');
if(doc !='')
{
$.ajax({
type: "post",
url: "../../includes/jqueryRequireFiles/appointmentSave.php",
data:names,
success: function(data)
{
$('#confir').text('Your Appointment Received..');
}
});
return false;
}
});
});
申請書があります。[送信]リンクをクリックすると、テキストボックス内のすべての値が取得され、serialize()関数を介してnames変数に配置されます。名前変数をフィルタリングして、フィールドのいずれかが入力されていないままになっていないかどうかを確認したい..その場合に限り、ajaxパーツを作成します..しかし、機能していません...ヘルプ