我正在尝试使用php查询表,并希望将该值传递给javascript中的日期对象,php查询工作正常,但不知道如何将其传递给日期对象,因为我必须设置试用期说发布日期为2个月。
?php echo $this->translate('Created %s', $this->timestamp($this->group->creation_date)) ?>
这很好用,但我想把它传递给javascript中的日期对象
var target_date = new Date();
target_date.setDate(target_date.getDate() + 1 /*days*/);
我想将创建日期传递给javascript的target_date。 帮助将非常感激。谢谢。
答案 0 :(得分:0)
您可以通过以下方式执行此操作。
<?php $date = $this->translate('Created %s', $this->timestamp($this->group->creation_date));
?>
<script>
var target_date = "<?php echo $date; ?>";
target_date.setDate(target_date.getDate() + 1 /*days*/)
<script>