Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML5에서 입력 유형="날짜" 필드에 대한 자리 표시자를 표시하지 않습니다. 그것을 해결하는 방법?


표시하려면 다음을 사용하십시오 -

<input placeholder = "Date" class = "textbox-n" type = "text" onfocus = "(this.type = 'date')"  id = "date">

CSS로 이동할 수도 있습니다 −

input[type="date"]::before{
   color: #ffffff;
   content: attr(placeholder) ": ";
}
input[type="date"]:focus::before {
   content: "" !important;
}