gpt4 book ai didi

javascript - 根据您来自的链接预先选择表单上的选项?

转载 作者:行者123 更新时间:2023-12-03 10:28:32 25 4
gpt4 key购买 nike

因此,我在表单中选择了日、月和年选项。该页面名为 new.php,链接到该页面的页面为 event.php?d=1&m=1&y=2015

因为它来自该链接,所以我希望选择选项位于相应的日期(2015 年 1 月 1 日)。

任何帮助将不胜感激

最佳答案

<?php
$day = $_GET['d'];
$month = $_GET['m'];
$year = $_GET['y'];

$date = date('Y-m-d', strtotime($day . $month . $year));
?>

<input type="date" value="<?php echo $date; ?>">

关于javascript - 根据您来自的链接预先选择表单上的选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29315474/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com