ajax成功后重新加载所有js文件

时间:2014-03-19 06:05:54

标签: javascript jquery ajax

在我的项目中,我使用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文件不适用而实现的样式。

我怎么能这样做?

0 个答案:

没有答案