在构建期间跟踪器https://alphasoftlimited.com/themes/sosure/period-tips-advice时,我的Ajax刷新旨在在表单详细信息更改运行良好时更新日历,但不会重新加载jquery函数调用。
$('#tracker').submit(function(event){
$.ajax({
url: url,
type: 'post',
dataType:'html',
data: {...},
success: function(response, textStatus, jqXHR){
.....
js data is refreshed (confirmed via console)
.....
$('#period-cal').calendar(); // This jquery fn doesn't refresh
});
},
error ...
});
如何在不重新加载整个页面的情况下使用Ajax刷新Jquery函数。谢谢