datepicker怎么清空值_bootstrap-datepicker clearDates清除控件日期值

栾瑞
2023-12-01

bootstrap-datepicker clearDates清除控件日期值

bootstrap-datepicker clearDates方法清除控件日期值,包括清除输入框的值,无需传入任何参数。

clearDates方法var ops = {

multidate:true,//同时可以选中多个日期

todayHighlight:true, //设置当天日期高亮

language: 'zh-CN', //语言

autoclose: true, //选择后自动关闭

clearBtn: true,//清除按钮

format: "yyyy-mm-dd",//日期格式

};

$("#itxst").datepicker(ops);

//除控件日期值

function doAction()

{

$('#itxst').datepicker('clearDates');

}

bootstrap-datepicker clearDates方法例子

clearDates

//初始化

var ops = {

multidate: true,//同时可以选中多个日期

todayHighlight: true, //设置当天日期高亮

language: 'zh-CN', //语言

autoclose: true, //选择后自动关闭

clearBtn: true,//清除按钮

format: "yyyy-mm-dd",//日期格式

};

$("#itxst").datepicker(ops);

function doAction() {

$('#itxst').datepicker('clearDates');

}

 类似资料: