Bootstrap模式从中返回多个值

时间:2013-10-08 14:11:04

标签: jquery twitter-bootstrap modal-dialog

我希望将多个值作为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

任何建议将不胜感激。提前致谢!利奥。

0 个答案:

没有答案