プレースホルダーは、入力タイプの日付に対して直接機能しません。
<input required="" type="text" class="form-control" 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'}">
ここでは、data
要素のinput
属性を試しました。 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" />
お役に立てれば
angular 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">