将一个Java脚本变量用于另一个Java脚本文件

时间:2020-03-17 作者:Shweta Danej

This is common.js

jQuery(function ($) {

    var commonJs = {
        init: function () {
        },
        showAlert: function () {
        },

    }

});

This is add.js

jQuery(function ($) {

    var addJs = {
        init: function () {
            console.log(commonJs.showAlert);
        },
    }

});
我想使用公共js函数commonJs.showAlert 添加中。js公司

我如何访问它?

2 个回复
最合适的回答,由SO网友:Yugma Patel 整理而成

请简单地将commonJs var放在jQuery函数之外,然后重试。这对你有用。

SO网友:Shweta Danej

var commonJs;
jQuery(function ($) {

    commonJs = {
        init: function () {
        },
        showAlert: function () {
        },

    }

});
我只需要把这个变量放在外面jQuery(function ($) 它成功了。