layui日付プラグインonchangeイベントを無効にする方法
808 ワード
laydate.render({
elem:'#text1',//
type:'date',
//range:true,//
min:'2017-09-1',//
max:'2017-10-1',//
trigger:'mouseover',//
show:true,//
position:'absolute',
//btns:['clear','now'],// ['clear', 'now', 'confirm']
theme:'#393D49',//
calendar:true,//
mark:{
'2017-9-21': ' '//
},
done:function(value,date){//value, date, endDate 、 、 、 。 , : 、 、
console.log(value);
console.log(date);
}
});
上記のように、onchangeイベントの代わりにdoneイベントで解決できます.
転載先:https://www.cnblogs.com/MagicAsa/p/9760009.html