0

我有一个表,它使用 jquery 的 .load 函数在移动某些内容后重新加载表中的所有数据。

问题是当表格加载时,页面上的外部 javascript 文件不再在表格中使用。

为了自己解决这个问题,我开始使用 jquery 的 .getScript。这有效(有时),但效果不佳。我认为脚本需要很长时间才能加载,而表格会立即加载,有时会导致脚本混乱。

我还尝试在 getScript 之后使用一个似乎仍然无法正常工作的函数。

这是我目前正在使用的

    $(function() {
        $("#sortable").sortable({
            update: function(event, ui) {
                serial = $('#sortable').sortable('serialize');
                $.ajax({
                url: "./menu-controller.php",
                type: "post",
                data: serial,
                success: function() {
                    $.getScript("./menu-admin.js");
                    $("#sortable").load("./menu-manager.php #menu-table");
            },
                error: function(){
                    alert("A problem occurred when moving this menu item. Please try again or contact support.");
                }
                });
            },
        handle:'.move-item',
        connectWith:'#menu-table',
        placeholder: "highlight",
        containment: "parent",
        revert: true,
        tolerance: "pointer",
        items: 'tbody > *'
        });
    });

具体来说,我们正在关注 .sortable 更新的“成功”。有没有更好的解决方案?

我的最终目标是在表格开始加载之前完全加载脚本。再一次,我已经尝试过使用 getScript 的功能,这似乎不起作用。

我感谢提供的任何建议、提示或解决方案。

4

1 回答 1

1

尝试仅将get()与回调一起使用:

$.get('http://ajax.googleapis.com/ajax/libs/ext-core/3.1.0/ext-core.js', function(response){
  // Start table
});
于 2013-10-28T06:04:08.883 回答