function create_RowsEditor(tableId, rowTmplId) {
rowsEditor = Object.create(null, {
'XtableId': tableId,
'XrowTmplId': rowTmplId
});
return rowsEditor;
}
$(function() {
var rowsEditor = create_RowsEditor('come', 'tmpl_row');
});
错误:TypeError:值不是非空对象
错误在哪里?