在Google Chrome中禁用本机日期选择器
日期选择器降落在Chrome 20上,是否有任何属性可以将其禁用?我的整个系统使用jQuery UI
datepicker及其跨浏览器,因此,我想禁用Chrome本机datepicker。有标签属性吗?
回答:
隐藏箭头:
input::-webkit-calendar-picker-indicator{ display: none;
}
并隐藏提示:
input[type="date"]::-webkit-input-placeholder{ visibility: hidden !important;
}
以上是 在Google Chrome中禁用本机日期选择器 的全部内容, 来源链接: utcz.com/qa/413550.html