我已经创建了许多函数,比如$ .redux.select,我想在dialog_finished事件触发时调用所有函数
这是field_select.js文件中的代码
(function($){
"use strict";
$.redux = $.redux || {};
$(document).ready(function () {
$.redux.select();
});
$.redux.select = function(){
//some code here
}
})(jQuery);
这是redux.js文件中的代码
(function($){
"use strict";
$.redux = $.redux || {};
$(document).ready(function () {
var the_body = $(document);
the_body.on('dialog_finished', function(event, window){
//render all methods
$.each($.redux, function( method, value ) {
/*******************************************************************/
my problem is below , how to call $.redux.select() using $.each
or there is better way
/*******************************************************************/
$.redux.$method();
});
});
});
})(jQuery);
答案 0 :(得分:0)
$.each($.redux, function( name, value ) {
value(); // call the function
});
或
$.each($.redux, function( name, value ) {
$.redux[name](); // call the function
});