如何在Bootstrap Datepicker中获取变量中的实际月份值? 本月“十月或十月”我想保存这个价值。
答案 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
});