Ajax and JS files



我在ajax调用时遇到问题。每次我想在 ajax 控制区域刷新或添加更多数据时,我都必须包含一些 js 文件。

这是我提交数据的常用脚本

<script type="text/javascript">
    function ajax_loader_order(x, y) {
        $.getScript("js/plugins.js");
        $.getScript("js/scripts.js");
        req = $.ajax({
            type: "GET",
            url: "products.php?order=" + y + "&orderud=" + x,
            datatype: "html",
            success: function(data){
                $('#container').html(data);
                $('html, body').animate({scrollTop: $("#main").offset().top}, 1000);
            }
        });
    }
    </script>

每次加载这些js文件会使网站更重,更慢。

有没有办法让我在第一次加载时加载这些 js 文件,每次调用这个 ajax 函数时,都要包括在内?

提前谢谢你

在 html 中导入 ajax 脚本后添加它们

伪代码:

<html>
  <head>
    <script src="ajax.js" />
    <script src="js1.js" />
    <script src="js2.js" />
  </head>
  <body>
  </body>
</html>

或:

<html>
  <head>
  </head>
  <body>
    <script src="ajax.js" />
    <script src="js1.js" />
    <script src="js2.js" />
  </body>
</html>

相关内容

  • 没有找到相关文章

最新更新