📄 widgetdateobtainerstrategy.js
字号:
function uiCalendar_WidgetDateObtainerStrategy(inputId, inputName, optFormat) { this._super(); var input = uiHtml_Element.createByEither(inputId, inputName); this.__domInput = input.getDomObject(); this.__format = uiUtil_Type.getString(optFormat, "MM/dd/yyyy");}uiCalendar_WidgetDateObtainerStrategy = uiUtil_Object.declareClass( uiCalendar_WidgetDateObtainerStrategy, uiUtil_Object);uiCalendar_WidgetDateObtainerStrategy.prototype.getNewDate = function(selectedDate) { try { var newDate = uiUtil_Calendar.createFromString( this.__domInput.value, this.__format); return newDate.toDate(); } catch (e) { if (e instanceof uiUtil_CreateException) { alert("Invalid date: " + this.__domInput.value + ". Make sure that the date format is correct."); return new Date(); } else { throw e; } }};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -