我希望将多个值作为bootstrap模式窗口之外的对象返回隐藏它。 我的代码是:
modal.on('hide', function() {
var o = new Object();
o.formId = $(this).children('.modal-body').children('form').attr('id');
o.schemaName = $(sn, modal).val();
console.log(o) // ->> this is works OK, obviously
});
但我想要的是:
var ceva = modal.on('hide', function() {
var o = new Object();
o.formId = $(this).children('.modal-body').children('form').attr('id');
o.schemaName = $(sn, modal).val();
return o;
});
console.log(ceva); // but this is returning all modal object instead o obj
任何建议将不胜感激。提前致谢!利奥。