<!DOCTYPE html>
<html>
<head>
<title>
How to get input type date
in dd-mm-yyyy format ?
</title>
<style>
body {
text-align: center;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>DateInput</h1>
<h3>
Get input date in
dd-mm-yyyy format
</h3>
<label for="start">
Enter the Date:
</label>
<input type="date" name="begin"
placeholder="dd-mm-yyyy" value=""
min="1997-01-01" max="2030-12-31">
</body>
</html>
3条答案
按热度按时间kyvafyod1#
在jQuery中使用格式日期. docs
mftmpeh82#
jjhzyzn03#
我没有使用datepicker函数就做到了这一点,谢谢上面的建议!