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;
}