반응형
jquery substr을 사용하여 간단히 문자열을 자를 수 있다.
최신글을 추출하면서 사용하기 간편하다.
1 2 3 4 5 6 | $(document).ready(function(){ $('.latest-post ul li a').each(function(){ if ($(this).text().length > 26) $(this).html($(this).text().substr(0,26)+".."); }); }); |
반응형
'Web > javascript & jQuery' 카테고리의 다른 글
[plugin] jquery slide plugin (0) | 2015.01.26 |
---|---|
[plugin] animate.css 와 더불어 편리하게 사용가능한 wow.js (0) | 2015.01.13 |
팝업창 소스 정리 (0) | 2014.12.03 |
모바일 접속 시 페이지 이동 (0) | 2014.11.04 |
랜덤으로 이미지 출력하기 (0) | 2014.10.10 |