当前位置: 首页 > 工具软件 > Date Input > 使用案例 >

html input时间格式转换,input标签的type为date,显示的日期格式样式更改

冯和硕
2023-12-01

这个///是改不了---的,这是谷哥自带的功能样式,只能改颜色背景色等,如果要那种效果可以用日历插件

有个取巧的方法,一个不能改的input覆盖在input type="date"上面

*{

margin: 0;

padding: 0;

}

#div{

width: 500px;

height: 300px;

border: 2px solid #ccc;

position: absolute;

}

.datebox{

width: 150px;

position: relative;

height: 24px;

margin: 100px;

}

#date{

position: absolute;

left: 1px;

top: 1px;

z-index: 50;

width: 100px;

height: 100%;

height: 22px;

border: 1px solid transparent;

}

.mydate{

width: 150px;

height: 24px;

border: 1px solid #CCC;

}

function aaa(obj){

document.getElementById('date').value = obj.value;

}

 类似资料: