문자 치환
- //&기호를 &로 바꾸기
- $("#gnb_1dul li:contains('&')").html(function(i,text){
- return text.replace(/&/g, '&');
- });
- // .이 들어간 문구를 .을 뺀 문구로 바꾸기
- $('.post-header a:contains(".")').text(function(i,text){
- return text.replace(/\./g, '');
- });
문자 치환
Reviewed by jieun
on
오전 9:50
Rating:
댓글 없음: