更改 html 输入类型日期的占位符样式



需要使输入类型日期的默认占位符看起来像图片

我不知道这是否是您搜索的内容,但这是我发现的最快的方法。
我用了这个,链接作为参考 https://help.syncfusion.com/js/datepicker/overview


var datepicker = new ej.calendars.DatePicker({ width: "200px" });
datepicker.appendTo('#datepicker');
.changeStyle {
word-spacing: 40px;
}
<html>
<head>
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet">
</head>
<body>
<input id="datepicker" class="changeStyle" type="text" 
placeholder="MM DD YYYY">
</body>
</html>

相关内容

  • 没有找到相关文章

最新更新