大家,我正在用 html5 創(chuàng)建一個(gè)可以自動(dòng)阻止特定日期的日歷,該信息在 PHP 變量中,我在日歷中有要阻止的天、月、年的數(shù)組,我該如何實(shí)現(xiàn)?我只需要知道我該怎么做,這必須用 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>
如何在 html5 日歷中阻止日期
米脂
2022-12-29 15:53:10