下拉菜单中的日期可作为字符串,但可作为数字

时间:2019-03-23 04:32:15

标签: javascript jqxwidgets

this JSFiddle中,一切正常,因为我在以下函数中将日期作为字符串传递,然后解析该值。

geteditorvalue: function (row, cellvalue, editor) {
      // return the editor's value.
      return new Date(parseInt(editor.val()));
    },   

但是,我有一个要求,我需要将日期传递为数字而不是字符串。因此,我将this JSFiddledata部分更新为数字(日期),并更新了以下geteditorvalue函数,如下所示:

geteditorvalue: function (row, cellvalue, editor) {
      // return the editor's value.
      //alert(editor.val());
      return new Date(editor.val());
    },  

但是它在下拉列表中打印空白。将数字传递date而不是string时我怎么了?

0 个答案:

没有答案