본문 바로가기

Script

티스토리, 댓글 URL주소 자동링크 삽입

 

티스토리, 댓글 URL주소에 자동으로 링크 삽입방법

$('.content__list .body').each(function() {
	var autolink = $(this).html().replace(/(https?:\/\/[^ ;|\\*'"!,()<>]+\/?)/ig,'<a href="$1" target="_blank">$1</a>');
	$(this).html(autolink);
});

 

댓글에 URL주소 입력시 

https://tooltip.tistory.com/65  ->  https://tooltip.tistory.com/65  

텍스트에 URL링크가 자동으로 활성화됨.

 

수정 방법 ?

$('.content__list .body')에 class명은 사용하는 블로그 댓글 class 명을 입력.

더 좋은 방법 소개 ^^

 

티스토리, 댓글에 링크 및 이미지 추가하기

이전글인 "댓글에 URL주소 자동링크 삽입" 내용중, ]+\/?)/ig,'$1'); $(this).html(autolink).." data-og-host="bizcell.tistory.com" data-og-source-url="https://tooltip.tistory.com/entry/%ED%8B%B0%EC%8A%A4..

tooltip.tistory.com