脚本没有显示在通过AJAX加载的html文档上

时间:2014-01-10 13:09:16

标签: javascript jquery html ajax

这是我的问题:

我有一个我的nimbit商店给我的脚本,我把它安装在我的store.html上并且它正常工作,我的问题是当store.html通过ajax脚本加载时 - 它没有显示。

请帮忙!在我身上轻松我不是一个专业的开发人员或程序员! 非常感谢。

这是我的nimbit商店给我的脚本:

<script src="http://www.nimbitmusic.com/tags/javascript/artists/theit_boy.1/store/"></script>

我已将其安装在store.html

[1]:http://theitboymusic.com/store.html并且它有效,但如果我通过我的[index.html] [1]上的商店按钮加载正在消失。

提前致谢

<!-- ############ ajax content (This content will be loaded by ajax) ############ -->
<div id="ajax-content" class="page-container">

    <!-- ############ container ############ -->
    <div class="container clearfix">

        <!-- ############ content header ############ -->
        <header class="content-header">
            <h1 class="content-title">STORE</h1>
            <span class="sub-heading">Purchase The IT_Boy Music</span>

            <hr class="content-line">
        </header>
        <!-- /content header -->

      <script src="http://www.nimbitmusic.com/tags/javascript/artists/theit_boy.1/store/"></script>

我的custom.js代码:

    // Custom pages
    // create a new instance of the plugin
    var custom_page = new $.PageLoader($('.page-by-ajax'), { 
        container_class : 'custom-container',
        top_offset : -settings.nav_height,
        deeplinking : true,
        debug : false,
        load_from_hash : true,
        load_start : function(){
            // I get fired when the ajax is starting load content

            // Show preloader
            NProgress.start();
        },
        load_end : function(e){
            // I get fired when the ajax is ending load content
            // Init scripts
            scripts(e);

            // Hide preloader
            NProgress.done();

        },
        close : function(){

            // Scroll to portfolio filter
            $.scrollTo('#custom-page', 400,{offset: {top:-settings.nav_height, left:0}});
        }
    });


})();

});

和我的index.html

 <li>
                        <a href="store.html" class="page-by-ajax" data-ajax-options='{"target" :"#custom-page"}'>STORE</a
                            </li>

1 个答案:

答案 0 :(得分:0)

“响应标题”的“内容类型”是“text / plain”,但它应该是“text / html”