0

在 joomla 1.5 中,我使用以下内容来显示日历。

<?php JHTML::_('behavior.calendar'); ?>

<input type="reset" class="button" value="..." onclick="return showCalendar('startdate','%Y-%m-%d');" />

我怎样才能在 joomla 3.0 中拥有同样的财富?现在我明白了Uncaught ReferenceError: showCalendar is not defined

谢谢

4

1 回答 1

1

这有效

<?php echo JHTML::_('calendar', $startdate, "mydate" , "mydate", '%Y-%m-%d');?>
于 2013-03-13T22:47:33.893 回答