在this JSFiddle中,一切正常,因为我在以下函数中将日期作为字符串传递,然后解析该值。
geteditorvalue: function (row, cellvalue, editor) {
// return the editor's value.
return new Date(parseInt(editor.val()));
},
但是,我有一个要求,我需要将日期传递为数字而不是字符串。因此,我将this JSFiddle的data
部分更新为数字(日期),并更新了以下geteditorvalue
函数,如下所示:
geteditorvalue: function (row, cellvalue, editor) {
// return the editor's value.
//alert(editor.val());
return new Date(editor.val());
},
但是它在下拉列表中打印空白。将数字传递date
而不是string
时我怎么了?