在我的表单中,我有一个包含数据的文本字段,例如 >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');
});
});