大家,我正在用 html5 创建一个可以自动阻止特定日期的日历,该信息在 PHP 变量中,我在日历中有要阻止的天、月、年的数组,我该如何实现?我只需要知道我该怎么做,这必须用 javascript 完成,对吗?
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8">
<title>Calendar</title>
</head>
<body>
<?php
if(isset($_POST['reservation']) && !empty($_POST['reservation'])) {
$startDate = $_POST['start'];
$endDate = $_POST['end'];
}
?>
<form class="" action="" method="post">
<label for="start">Date init</label>
<input type="date" id="start" name="start" value="<?php echo date('Y-m-d'); ?>" min="<?php echo date('Y-m-d'); ?>" max="2021-08-10">
<label for="end">Date end</label>
<input type="date" id="end" name="end" value="<?php echo date('Y-m-d'); ?>" min="<?php echo date('Y-m-d'); ?>" max="2021-08-10">
<input type="submit" name="reservation" value="Send">
</form>
</body>
</html>
www说
相关分类