Похоже, вы сможете установить это с помощью плагина.
Вот, может быть, начало?
Если вы посмотрите в коде, я думаю, что вы должны передать setMask
options
объект.Похоже, defaultValue
является возможным вариантом.
Похоже, что следующее должно работать (но это не так):
$("#txtTime").setMask({mask: "time", defaultValue:"hh:mm"});
Это то, на что я смотрел:
$.fn.extend({
setMask : function(options){
return $.mask.set(this, options);
},
А
// default settings for the plugin
options : {
attr: 'alt', // an attr to look for the mask name or the mask itself
mask: null, // the mask to be used on the input
type: 'fixed', // the mask of this mask
maxLength: -1, // the maxLength of the mask
defaultValue: '', // the default value for this input