딱히 angular.js 에만 해당되는 속성은 아니나 angular 에서 사용하는 법 안내. var contentTr = angular.element('test'); contentTr.insertAfter(angular.element(document).find('.list li:last-child')); $compile(contentTr)(scope); 추가할 element 에 insertBefore/insertAfter 를 쓰는게 포인트. => 추가할 element.insertBefore(추가할 위치의 selector) http://www.w3schools.com/jsref/met_node_insertbefore.asp 이것과 http://www.w3schools.com/jquery/html_inser..
html 단에 데이터를 입력할 때 데이터가 html 태그에 묶여있는 경우가 있다. 태그 부분은 지우고 그 안에 있는 텍스트만 이용하고 싶을 경우 앵귤러의 필터 기능을 이용하면 된다. plainTextFilter.js 1234567angular.module('hubpage').filter('htmlToPlaintext', [function () { return function (text) { // html tag 가 있는 경우 태그를 제거한 텍스를 리턴하고, 값이 없으면 "" 을 리턴함. return text ? String(text).replace(/]+>/gm, '') : ""; };}]); html 단에서 필터 사용 예 1{{page.desc | htmlToPlaintext}}