选择日期时,我希望该日期插入链接并加载。
$(function() {
$( "#datepicker" ).datepicker({
dateFormat: 'yy-mm-dd',
onSelect: function(date) {
window.location.replace("http://localhost/news-archive/$date/-/");
}
});
})
功能有效,唯一的问题是如何在链接中插入日期值?提前谢谢。
答案 0 :(得分:1)
尝试:
window.location.replace(" http://localhost/news-archive/&#34 + date.concat(" / - /&#34));