Aro*_*oon 6 html javascript datepicker
我知道这可能似乎重复的问题,但我仍然没有得到明确的想法有关清除按钮firefox和上/下箭头chrome。它在我的桌子上占据了更多的空间。我想删除这些功能。我真的不知道是否有任何功能在javascript或CSS
我试过这个:
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
display: none;
-webkit-appearance: none;
}
Run Code Online (Sandbox Code Playgroud)
但是,仍然获得相同的 X 标记。
在 Chrome 中,您可以使用
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button { display: none; }
Run Code Online (Sandbox Code Playgroud)
另一方面,Firefox 不支持此功能。
使用 3rd 方 jQuery 插件可能会更好。