保存实际月份值Bootstrap datepicker

时间:2013-10-10 14:41:39

标签: twitter-bootstrap datepicker

如何在Bootstrap Datepicker中获取变量中的实际月份值? 本月“十月或十月”我想保存这个价值。

我正在使用此版本,内部演示: http://eternicode.github.io/bootstrap-datepicker/?markup=embedded&format=&weekStart=&startDate=&endDate=&startView=0&minViewMode=0&todayBtn=linked&language=pt&orientation=auto#sandbox

1 个答案:

答案 0 :(得分:0)

使用类似

的jQuery
$('#buttonId').click(function(){
   var date = $('#dateFieldID').val();  // "10/11/2013"
   var month = date.substring(0,2); //Grab first two characters of the date string = 10
   alert(month); // here is your month
   // do something with your month
});