显示输入类型日期的占位符文本



占位符不能直接用于输入类型datedatetime-local

<input type="date" placeholder="Date" />
<input type="datetime-local" placeholder="Date" />

相反,该字段在桌面上显示mm/dd/yyy,在移动设备上不显示任何内容。

如何显示日期占位符文本?

使用onfocus="(this.type='date')",例如:

<input required="" type="text" class="form-control" placeholder="Date" onfocus="(this.type='date')"/>

使用onfocus和onblur。。。这里有一个例子:

<input type="text" placeholder="Birth Date" onfocus="(this.type='date')" onblur="if(this.value==''){this.type='text'}">

这里,我在input元素中尝试了data属性。并使用CSS 应用所需占位符

<input type="date" name="dob" data-placeholder="Date of birth" required aria-required="true" />

    input[type="date"]::before { 
    	content: attr(data-placeholder);
    	width: 100%;
    }
    
    /* hide our custom/fake placeholder text when in focus to show the default
     * 'mm/dd/yyyy' value and when valid to show the users' date of birth value.
     */
    input[type="date"]:focus::before,
    input[type="date"]:valid::before { display: none }
<input type="date" name="dob" data-placeholder="Date of birth" required aria-required="true" />

希望这能帮助

<input type="text" placeholder="*To Date" onfocus="(this.type='date')" onblur="(this.type='text')" >

这段代码对我有效。只需使用这个

对于角度2,您可以使用此指令

import {Directive, ElementRef, HostListener} from '@angular/core';
@Directive({
  selector: '[appDateClick]'
})
export class DateClickDirective {
  @HostListener('focus') onMouseFocus() {
    this.el.nativeElement.type = 'date';
    setTimeout(()=>{this.el.nativeElement.click()},2);
  }
  @HostListener('blur') onMouseBlur() {
    if(this.el.nativeElement.value == ""){
      this.el.nativeElement.type = 'text';
    }
  }

  constructor(private el:ElementRef) { }
}

并像下面这样使用它。

 <input appDateClick name="targetDate" placeholder="buton name" type="text">

对于React,您可以这样做。

const onDateFocus = (e) => (e.target.type = "datetime-local");
const onDateBlur = (e) => (e.target.type = "text");
.
.
.
  <input
    onFocus={onDateFocus}
    onBlur={onDateBlur}
    type="text"
    placeholder="Event Date"
  />

现代浏览器使用Shadow DOM来方便日期和日期时间的输入。因此,除非浏览器出于任何原因选择回退到text输入,否则不会显示占位符文本。您可以使用以下逻辑来适应这两种情况:

::-webkit-calendar-picker-indicator {
  @apply hidden; /* hide native picker icon */
}
input[type^='date']:not(:placeholder-shown) {
  @apply before:content-[attr(placeholder)];
  @apply sm:after:content-[attr(placeholder)] sm:before:hidden;
}
input[type^='date']::after,
input[type^='date']::before {
  @apply text-gray-500;
}

我使用了Tailwind CSS语法,因为它很容易查找。让我们把它逐个分解:

::-webkit-calendar-picker-indicator {
  @apply hidden; /* hide native picker icon */
}

使用Shadow DOM伪元素选择器隐藏本机选择器图标(通常是日历)。

input[type^='date']:not(:placeholder-shown) {
  @apply before:content-[attr(placeholder)];
  @apply sm:after:content-[attr(placeholder)] sm:before:hidden;
}

选择未显示占位符的所有datedatetime-local输入,并:

  • 默认情况下,使用::before伪元素显示输入的placeholder文本
  • 在小屏幕及以上屏幕上,切换为使用::after伪元素
input[type^='date']::after,
input[type^='date']::before {
  @apply text-gray-500;
}

设置::before::after伪元素的样式。

相关内容

  • 没有找到相关文章

最新更新