Datepicker onselect使用变量重定向

时间:2016-04-19 12:31:39

标签: php jquery

选择日期时,我希望该日期插入链接并加载。

$(function() {
    $( "#datepicker" ).datepicker({
        dateFormat: 'yy-mm-dd',
            onSelect: function(date) {
                window.location.replace("http://localhost/news-archive/$date/-/");
            }
    });
  })

功能有效,唯一的问题是如何在链接中插入日期值?提前谢谢。

1 个答案:

答案 0 :(得分:1)

尝试:

window.location.replace(" http://localhost/news-archive/&#34 + date.concat(" / - /&#34));