在wordpress网站中创建联系人,我为日期字段提供了占位符文本,但仍显示为mm / dd / yyyy。如何将此mm / dd / yyyy更改为Text。
<div class="form-group col-md-6">[date* preferreddate min:2017-01-01 max:2018-12-31 class:c-input class:brd-grey placeholder "Preferred Appointment Date"]</div>
答案 0 :(得分:0)
您可以使用此短代码,因为默认情况下所有日期参数均无效。因此,您可以尝试使用
<div class="form-group col-md-6">[date* placeholder "Preferred Appointment Date"]</div>
其他样式由CSS管理。
谢谢
答案 1 :(得分:0)
通过在联系人form7中为日期添加此代码来解决此日期,解决了该问题。
$('input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"]').each(function() {
var el = this, type = $(el).attr('type');
if ($(el).val() == '') $(el).attr('type', 'text');
$(el).focus(function() {
$(el).attr('type', type);
el.click();
});
$(el).blur(function() {
if ($(el).val() == '') $(el).attr('type', 'text');
});
});