默认情况下,Wordpress Contact From7已选择当前日期

时间:2019-03-14 08:16:36

标签: jquery wordpress contact-form-7

我是WordPress和联系表单7的新手,是否有可能在联系表单7 datepicker中默认选择今天的日期?我的短代码是[date* all-date id:date-field min:today ]。它对我不起作用。这是打开表单时看到用户的内容。 enter image description here

我想成为这样:

enter image description here

我尝试这个,但是对我没有帮助

var date = new Date();
$("#date-field").datepicker({
dateFormat: 'd-M-y'
}).datepicker('setDate', date);

谢谢。

1 个答案:

答案 0 :(得分:1)

尝试一下:

   var now = new Date(); 
   var day = ("0" + now.getDate()).slice(-2);
   var month = ("0" + (now.getMonth() + 1)).slice(-2);
   var today = now.getFullYear()+"-"+(month)+"-"+(day);
  $('#date-field').val(today);
$("#date-field").attr("min", today);

对我来说正在工作....