input type datetime-local 解决移动端显示placeholder

input type datetime-local 解决移动端显示placeholder.

今天在做移动端后台的时候,又一个付款时间的栏目需要用到input type datetime-local
input type datetime-local 解决移动端显示placeholder_第1张图片
css

input[type="date"]:before{
    color:#A9A9A9;
    content:attr(placeholder);
}


input[type="date"].full:before {
    color:black;
    content:""!important;
}

html


通过v-model绑定来判断input是否有值来给其添加类名’full’,然后就解决了。

你可能感兴趣的:(移动端)