在输入中键入日期时锁定斜杠

时间:2016-05-27 15:50:19

标签: jquery html5 date

使用Symfony2.3.​​4,PHP5.6.3,Twig,HTML5,jQuery2.2.3和CSS3。

我需要在输入标记中锁定斜杠(或一般的分隔符),同时用户输入对应于日,月和年的数字。例如,2016年5月15日的输入会更多或更少:

   library(zoo)
#
# split Date into year and quarter strings
#
  tmp <- t(sapply(strsplit((df$Date)," "), function(x) if(length(x)==1) c(NA, x) else x) ) 
#
# use na.locf to replace NA with previous year
#
  tmp <- paste(na.locf(tmp[,1]), tmp[,2])
#
#   transform df into a zoo time series object with yearqtr dates
#
 df_zoo <- zoo(df[,-1], order.by = as.yearqtr(tmp))

基本上输入的数字必须替换下划线,当(不可见)光标到达斜线时,它应该向前跳过1个空格。

任何疑问或想法,请回答。

感谢名单

1 个答案:

答案 0 :(得分:0)

我最喜欢使用HTML5的方法是使用新的输入类型。对于这个,你可以使用“日期”。

<input type="date">