반응형
const ParamObject =[];
let tempObject;
$('#addPramObjectButton').on('click', function() {
tempObject = {}; //초기화를 반드시해야됨 초기화를 안하면 같은 값이 반복해서 들어간다.
let intentParam = $('#intentParam').val();
let defaultVal = $('#defaultVal').val();
let notNull = $('#notNull').val();
tempObject.intentName = intentParam
tempObject.defaultVal = defaultVal
tempObject.notNull = notNull
console.log('tempObject' , tempObject);
ParamObject.push(tempObject);
alert('입력되었습니다.')
$('#intentParam').val('');
$('#defaultVal').val('');
$('#notNull').val('');
console.log('ParamObject' , ParamObject);
// let html='';
// ParamObject.map(elem => {
// $('#paramObjectShow').empty();
// html +=`
// <label for="show" style="font-size: 15px; color: darkcyan; font-weight: bold;">${elem.intentName}</label>
// <label for="show" style="font-size: 15px; color: darkcyan; font-weight: bold;">${elem.defaultVal}</label>
// <label for="show" style="font-size: 15px; color: darkcyan; font-weight: bold;">${elem.notNull}</label><br/>
// `
// });
// $('#paramObjectShow').append(html);
})
반응형
'IT > Javascript' 카테고리의 다른 글
Javascript도 Private class 필드 선언이 가능핟!? (0) | 2021.06.22 |
---|---|
배열(Array)에 객체(Object)를 넣었을 때(Push) 발생하는 일 (0) | 2021.06.15 |
reactJS란? (0) | 2021.02.14 |
실행 컨텍스트(execution context) (0) | 2021.02.07 |
배열에 주로 쓰이는 filter 메서드와 find 메서드 그리고 includes메서드 [javascript] (0) | 2021.01.24 |