私のフォームには、>2012-01-01 <2012-02-01 などのデータを含むテキスト フィールドがありますが、フォームをシリアル化してデータを投稿すると、フィールドには >2012-01-01 のみが含まれ、< は含まれません。 2012-02-01。
それはどこに行きましたか?
$("#grouppositionsform").live("submit",function(e){
e.preventDefault();
$('body').addClass('wait');
$.post("/page.php",$(this).serialize(), function(data){
$('.showdirectory').fadeOut('slow', function() {
$(".showdirectory").html(data);
$(".showdirectory").fadeIn("slow");
});
}).error(function() {
//alert("error");
}).complete(function() {
//alert("complete");
$('body').removeClass('wait');
});
});