ブートストラップモーダルウィンドウを非表示にして、オブジェクトとして複数の値を返したいです。私のコードは次のとおりです。
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
任意の提案をいただければ幸いです。前もって感謝します!レオ。