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公司
我如何访问它?