텍스트3 [django] 텍스트 자르고 말줄임표 적용(templates) // templates 폴더의 html 문서에서 truncatechars 를 사용하면 원하는 길이만큼 텍스트를 자르고 말줄임표를 적용할 수 있다. {{ p.psubject|truncatechars:40 }} 2023. 5. 15. [JS] 선택된 영역의 텍스트 가져오기 // TEXT로 가져오기 - wfSel.getTEXT() // HTML 코드로 가져오기 - wfSel.getHTML() // 특정 문자열, 태그 등을 추가하기 - wfSel.insert(before, after) // 해당 문자열을 바꾸기 - wfSel.replace(str) // 태그 삭제하기 - wfSel.removeTag() const wfSel = (() => { let sel, range, content, node; return { setVariables: () => { sel = window.getSelection(); if (!sel) return; // Set variables range = sel.getRangeAt(0); content = range.cloneContents(); nod.. 2023. 3. 9. [PHP] 텍스트자르고 말줄임표 붙이기 function text_dot($text, $len){ $text = strip_tags($text); if(strlen($text) 2023. 3. 8. 이전 1 다음