在响应日历中添加动态月份

时间:2015-12-16 12:55:15

标签: javascript php jquery

我正在尝试为我的网站制作一个自适应日历,我正在使用的脚本是

 <script type="text/javascript">
  $(document).ready(function () {
    $(".responsive-calendar").responsiveCalendar({
      time: '2015-12',
      events: {
        "2015-12-18": {},
        "2015-12-21": {},
        "2015-12-23": {}
        }
    });
  });
</script>

我正在尝试通过PHP将动态数月投入其中并在脚本中进行以下更改

time: '<?php echo('Y-m'); ?>',

但它没有返回任何东西

1 个答案:

答案 0 :(得分:1)

尝试替换为:

time: '<?php echo date("Y-m"); ?>'