您也可以選擇CSS −input[type="date"]::before{ "/> 您也可以選擇CSS −input[type="date"]::before{ ">

首頁  >  文章  >  web前端  >  在HTML5中,對於input type="date"欄位不顯示佔位符。如何解決這個問題?

在HTML5中,對於input type="date"欄位不顯示佔位符。如何解決這個問題?

PHPz
PHPz轉載
2023-09-06 20:45:041160瀏覽

在HTML5中,对于input type="date"字段不显示占位符。如何解决这个问题?

要顯示它,使用以下內容 −

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

您也可以選擇CSS −

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

以上是在HTML5中,對於input type="date"欄位不顯示佔位符。如何解決這個問題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除