How to get the value of the JS time plug-in

done:function (value) {

alert(value);

}
this can pop up the selected date. I need to save this value to the database. How can I get this value?
has not used the plug-in. Please help me explain how I should proceed to the next step.

Code
clipboard.png


clipboard.png

Mar.11,2021

one option is that you define a variable in the outermost layer, let data = {};

.
// 
data.date = value;

then pass this data to the backend.

Menu