2017-10-17 20 views
0

私はdateFieldという名前のクラスを持っています。手紙が挿入されないようにするはずであり、ユーザが手紙を入力しようとすると、その手紙を防ぐべきである。それが起動すると、e.preventDetaul()が起動しますが、実際にはアクションは停止しません。Jquery関数は文字が正しく入力されないようにしていません

$(document).off('keyup', '.dateField'); 
$(document).on('keyup', '.dateField', function(e){ 
    $(this).attr('maxlength', '10'); 

    if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 || 
     // Allow: Ctrl+A, Command+A 
     (e.keyCode === 65 && (e.ctrlKey === true || e.metaKey === true)) || 
     // Allow: home, end, left, right, down, up 
     (e.keyCode >= 35 && e.keyCode <= 40)) { 
      // let it happen, don't do anything 
      return; 
    } 
    // Ensure that it is a number and stop the keypress 
    if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { 
     e.preventDefault(); 
    } 

    var value=$(this).val(); 

    if(value.length==2||value.length==5){ 
     $(this).val($(this).val()+'/'); 
    } 

    if (value.length > 9) { 
     var comp = $(this).val().split("/"); 
     var m = parseInt(comp[0], 10); 
     var d = parseInt(comp[1], 10); 
     var y = parseInt(comp[2], 10); 

     var date = new Date(y,m-1,d); 

     if (date.getFullYear() == y && date.getMonth() + 1 == m && date.getDate() == d) { 
      $(this).removeClass('fail'); 
     } else { 
      $(this).addClass('fail'); 
     } 
    } 

    if(e.keyCode == 13 || e.which == 13){ 
     e.preventDefault(); 

     if($(this).hasClass('tcal')){ 
      var date = $(this).val().split("/"); 
      var m = parseInt(date[0], 10), 
      d = parseInt(date[1], 10), 
      y = parseInt(date[2], 10); 

      if(new Date(y, m - 1, d)!='Invalid Date'){ 
       //alert(new Date(y, m - 1, d)); 
       $('.date-manage').mouseleave(); 
       $('.date.sub-title').html($('#date-between').val()+' to '+$('#date-and').val()); 

       //$(".box-date input").unbind("blur"); 
      } 
     } 

     $('.date-animation').stop(); 
     $('.date-animation').animate({height: 0}, 500, 'easeOutQuart'); 
    } 
}); 

enter image description here

+0

@MalteHartwig先に進んで質問に答えてください!私はその笑を考えていませんでした。 – Charles

+0

あなたは単に日付ピッカーを使用してみませんか? – lshettyl

+0

@Ishettylは視覚的に魅力的ではありません:) – Charles

答えて

1

あなたは、KeyDownイベントのような他のイベントを試みたことがありますか?たぶん、キーアップが遅すぎ、文字が入力に既に挿入されている可能性があります。

関連する問題