在我的项目中,我使用ajax在点击按钮时更改div的内容。
这是我的代码:
$('#geo_location').click(function(){
$.ajax({
url: '/get_geo_locations/',
type: 'GET',
success: function(response){
currentPage.getTemplateOnly('/static/template/geo_location.html', function(template){
$('#dataset_container').html(template({
geo_location: response
}));
$('#dataset_about').html('...')
});
}
但我需要重新加载一些js文件,因为它会在页面刷新时加载。
我可以更改内容,但由于某些js文件不适用而实现的样式。
我怎么能这样做?