text3 [JS/JQUERY] input text 숫자만 입력 (정규식) function telinput(mt_tel){ const regex = /^\d+$/; if (!regex.test(mt_tel)) { mt_tel = mt_tel.replace(/\D/g, ''); } $("#mt_tel").val(mt_tel); } 2023. 6. 30. [django] 텍스트 자르고 말줄임표 적용(templates) // templates 폴더의 html 문서에서 truncatechars 를 사용하면 원하는 길이만큼 텍스트를 자르고 말줄임표를 적용할 수 있다. {{ p.psubject|truncatechars:40 }} 2023. 5. 15. [PHP] 텍스트자르고 말줄임표 붙이기 function text_dot($text, $len){ $text = strip_tags($text); if(strlen($text) 2023. 3. 8. 이전 1 다음