.date input[type=date] {
background-color:transparent;
color:#fff;
FILTER: alpha(opacity=0); /*androd*/
appearance:none; /*下拉框去掉右侧图标*/
-moz-appearance:none;
-webkit-appearance:none;
}
cssinput[type="date"]:before{ color:#A9A9A9; content:attr(placeholder);
}input[type="date"].full:before { color:black; content:""!important;
}
js
$("#date").on("input",function(){ if($(this).val().length>0){
$(this).addClass("full");
}else{
$(this).removeClass("full");
}
});