javascript로 textarea 추가시
var h = document.createElement("textarea");
h.setAttribute("value", value);
var t = document.createTextNode(value);
h.appendChild(t);
* 출처 : https://stackoverflow.com/questions/25460533/javascript-createelementtextarea-shows-up-as-object
'개발 > JavaScript' 카테고리의 다른 글
javascript | non-breaking space (char code 160) (0) | 2021.11.25 |
---|---|
javascirpt | input 여러개 숫자만 입력가능하도록 설정 | input only text getElementsByClassName (0) | 2021.09.17 |
JavaScript | do{} 구문, 완료값 반환 (0) | 2021.06.13 |
javascript | list null 체크 , NodeList[] (0) | 2021.03.17 |
javascript | uncaught syntaxerror invalid or unexpected token (0) | 2020.09.15 |