我有以下表格:
<form name="form1" method="post" action="test.php?date=javascript:this.form.date2.value">
我使用的是DatetimePicker for PHP,如下所示:
$myCalendar = new tc_calendar("date2");
$myCalendar->setIcon("calendar/images/iconCalendar.gif");
$myCalendar->setDate(date('d'), date('m'), date('Y'));
$myCalendar->setPath("calendar/");
$myCalendar->setYearInterval(1970, 2020);
$myCalendar->dateAllow('2008-05-13', '2015-03-01', false);
$myCalendar->startMonday(true);
$myCalendar->autoSubmit(true, "form1", "test.php");
$myCalendar->autoSubmit(true, "form1");
$myCalendar->showWeeks(true);
$myCalendar->writeScript();
问题是我无法将日期值从datetimepicker传递到表单操作,其中url是“test.php?= date =”
如何通过单击日历传递datetimepicker的值,而不是使用任何额外的按钮并使用onsubmit事件。
执行后,URL中的结果如下所示: ?test.php的日期= JavaScript的:this.form.date2.value
由于