包含javascript文件后,如何删除/删除

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包含javascript文件后,如何删除/删除相关的知识,希望对你有一定的参考价值。

因为我使用ajax来访问我网站上的内容;我有这个代码#1动态包含不同目录的javascript文件(取决于加载的内容)但包含相同的功能。

代码#1:

var formContent = $("body form").first().attr('name');
if (typeof formContent != 'undefined') {            
    var uri = "classJS/" + formContent + "/jsc.js"; //File Javascript repeate in diferent directories.
    fetch(uri, { method: 'GET', type: 'HEAD' }).then(function(resp) {
        if (resp['status'] === 200) {

            //if Exist the Default Function (FunctionForms) set this to undefined.
            if (window.isFunction(window.FunctionForms)) {
                window.FunctionForms = undefined;
            }

            $.getScript(uri).done(function() {
                window.FunctionForms(formEvent); //call or Re-Call the function.
            });


        } else {
            console.log('%cNot find Script file: ' + formEvent, 'color: red');
        }
    });
}

代码#2,此功能(在每个文件中重复)专用于为加载的内容收取其他特定功能,例如:

代码#2文件1 :(可以加载N次)

function FunctionForms(formEvent) {
    console.log('%cCarga de Script JS para: ' + formEvent, 'background: #222; color: #bada55');
    window.Test();
}

function Test(){
    $('[name="s_list_2"]').unbind('click.form');
    $(document).on("click.form", '[name="s_list_2"]', function(event) {
        console.log('Is clicked');
    });
}

来自其他目录的同一文件可能有一个微妙的不同内容:

function FunctionForms(formEvent) {
    //not used.........
    console.log('%cCarga de Script JS para: ' + formEvent, 'background: #222; color: #bada55');
}

然后:如果我输入相同的内容5次,就会发生这种情况;系统包含相同文件的5倍;但它不会覆盖该函数或将其删除,相反,它会将其存储在不同的实例中;导致它运行N次:在控制台ooutput我得到这个。

VM6933:27 Is clicked
VM6944:27 Is clicked
VM6986:27 Is clicked
VM7022:27 Is clicked
VM7105:27 Is clicked

我明白这显然不是我所期望的:

if (window.isFunction(window.FunctionForms)) {
    window.FunctionForms = undefined;
}
答案

问题不在于功能,问题在于事件绑定。每次加载文件时,它都会:

$(document).on("click.form", '[name="s_list_2"]', function(event) {
    console.log('Is clicked');
});

这会添加另一个点击处理程

看起来你试图先删除旧的处理程序,但是你没有正确地执行它。要删除委托事件处理程序,必须使用与.off()相同的委派语法:

$(document).off("click.form", '[name="s_list_2"]');

你正在使用:

$('[name="s_list_2"]').unbind('click.form');

这将只删除已添加的处理程序:

$('[name="s_list_2"]').on('click.form', function ...);

以上是关于包含javascript文件后,如何删除/删除的主要内容,如果未能解决你的问题,请参考以下文章

Spring MVC 和表单绑定:如何从列表中删除项目?

华为OD机试 - 删除最少字符(JavaScript) | 机试题+算法思路+考点+代码解析 2023

在 Laravel 8 中更新图像后如何从公共文件夹中删除图像

SQLite 插入返回 -1 。删除包含数据库的文件夹后

如何从文本文件中删除重复并包含某些单词的行?

如何删除 JavaScript 中的占位符文本? [复制]