gpt4 book ai didi

javascript - HTML5 输入类型=日期 : Can I open/close the date picker with JavaScript?

转载 作者:技术小花猫 更新时间:2023-10-29 12:55:12 25 4
gpt4 key购买 nike

我正在尝试自定义 HTML5 input type="date"元素。我想添加一个单独的按钮单击,它将切换日期选择器下拉列表的可见性。我找不到这方面的任何信息。非常感谢任何帮助!

enter image description here

最佳答案

这是我使用 CSS 制作的解决方案。

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.exmp-wrp {
margin-top: 100px;
position: relative;
width: 200px;
}

.btn-wrp {
border: 1px solid #dadada;
display: inline-block;
width: 100%;
position: relative;
z-index: 10;
}

.btn-clck {
border: none;
background: transparent;
width: 100%;
padding: 10px;
}

.btn-clck::-webkit-calendar-picker-indicator {
right: -10px;
position: absolute;
width: 78px;
height: 40px;
color: rgba(204, 204, 204, 0);
opacity: 0
}

.btn-clck::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.btn-clck::-webkit-clear-button {
margin-right:75px;
}
.btn {
height: 100%;
background: #fda200;
border: none;
color: #fff;
padding: 13px;
position: absolute;
right: 0;
top: 0;
}
<div class="exmp-wrp">
<div class="btn-wrp">
<input type="date" class="btn-clck"/>
</div>
<button class="btn">Click me</button>
</div>

关于javascript - HTML5 输入类型=日期 : Can I open/close the date picker with JavaScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26413209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com