方法一
html
<input placeholder="选择开始时间" name="date1" type="date">
css
input[name="date1"]:before{
content:attr(placeholder);
}
input[name="date1"].selected:before {
content:""!important;
}
js
$("input[name='date1']").on("input", function () {
if ($(this).val().length > 0) {
$(this).addClass("selected");
} else {
$(this).removeClass("selected");
}
});