function create_RowsEditor(tableId, rowTmplId) {
rowsEditor = Object.create(null, {
'XtableId': tableId,
'XrowTmplId': rowTmplId
});
return rowsEditor;
}
$(function() {
var rowsEditor = create_RowsEditor('come', 'tmpl_row');
});
エラー: TypeError: 値が null 以外のオブジェクトではありません
エラーはどこにありますか?