문자 치환

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

댓글 없음:

Powered by Blogger.