最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to read Date from textBox, having Jquery UI DatePicker - Stack Overflow

programmeradmin0浏览0评论

The below Jquery UI Date Picker shows the date in correct format, but reads it wrong.

HTML:

<input type="text" id="date">
<input type="button" id="btn" value="Show"/>

JavaScript:

$('#date').datepicker({dateFormat: 'dd-mm-yy'});
$('#btn').click(function(){
  var _myDate = new Date($('#date').val());
  alert(_myDate);
});

Whats wrong? ( Jsfiddle Here)

It shows the date correct, but reads it wrong...

When I use it like this:

$('#btn').click(function(){
      var _myDate = $('#date').val();
      alert(_myDate);
 });

It's ok, but when pass it to Server side using C# as string and then converting it to DateTime it gives me error of Invalid Date when every Day is selected greater than 12. It treats with Day as a month. And my required format of Date is dd/mm/yyyy.

The below Jquery UI Date Picker shows the date in correct format, but reads it wrong.

HTML:

<input type="text" id="date">
<input type="button" id="btn" value="Show"/>

JavaScript:

$('#date').datepicker({dateFormat: 'dd-mm-yy'});
$('#btn').click(function(){
  var _myDate = new Date($('#date').val());
  alert(_myDate);
});

Whats wrong? ( Jsfiddle Here)

It shows the date correct, but reads it wrong...

When I use it like this:

$('#btn').click(function(){
      var _myDate = $('#date').val();
      alert(_myDate);
 });

It's ok, but when pass it to Server side using C# as string and then converting it to DateTime it gives me error of Invalid Date when every Day is selected greater than 12. It treats with Day as a month. And my required format of Date is dd/mm/yyyy.

Share Improve this question edited Feb 6, 2016 at 19:46 Mohammad Kermani 5,4368 gold badges39 silver badges63 bronze badges asked Mar 5, 2014 at 11:19 Shahid IqbalShahid Iqbal 2,1339 gold badges31 silver badges53 bronze badges
Add a ment  | 

7 Answers 7

Reset to default 6

maybe this is your answer

$( "#date" ).datepicker({dateFormat: 'mm-dd-yy'});
    $('#btn').click(function(){
    var _myDate = new Date($('#date').val());
    var new_date=_myDate.split('-');
    var month=new_date[0];
    var day=new_date[1];
    var year=new_date[2];
    //you have 3 data, month, day and year.

    alert(month+"/"+day+"/"+year);
    });

you can use that 3 variable day, month, year to write your programs

Change var _myDate = new Date($('#date').val() ); to var _myDate = $('#date').val());

try like this

$( "#date" ).datepicker({dateFormat: 'mm-dd-yy'});
$('#btn').click(function(){
var _myDate = new Date($('#date').val()  );
alert(_myDate);
});

DEMO

You don't need the Date type declaration - you can just do

$( "#date" ).datepicker({dateFormat: 'dd-mm-yy'});
$('#btn').click(function(){
  var _myDate = $('#date').val();
alert(_myDate);
});

Javascript is a dynamically typed language so the Date initialisation is unnecessary

Try this: it's work fine

  $('#date').datepicker({dateFormat: 'dd-mm-yy',  changeMonth:true, changeYear:true,showOn: "both",buttonImage: "",buttonImageOnly: false });

console.log($('#date').val());

My javaScript function...

convertDate = function (strDate) {
   var newDate = new Date();
   var oldDate = '';
   if (strDate.contains('/')) {
         oldDate = strDate.split('/');
      } else if (strDate.contains('-')) {
         oldDate = strDate.split('-');
      }
     //OldDate format is dd/mm/yyyy
      newDate.setDate(oldDate[0]);
      newDate.setMonth(oldDate[1] - 1);
      newDate.setYear(oldDate[2]);
      return newDate;
 }

Just parse the textbox value using parseDate with the same format you initially set up the datepicker:

console.log($.datepicker.parseDate("dd-mm-yy", $('#date').val()));

parseDate will return a Date object so that you don't need to create it manually.

发布评论

评论列表(0)

  1. 暂无评论