336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

일감 중에 <script>alert(1);</script> 와 같은 스크립트성 문자들을 없앨 일이 있어 검색 후 정리해둔다.

 

 

1. 태그 안의 문자 추출하기 

 

var text = "hello <script>alert(1);</script> world"; 

text = text.match(/\<script>.*\<\/script>/gi); 

text += ""; 

text = text.split("<script>").join(""); 

text = text.split("</script>").join(""); 

 

결과 : alert(1);

 

 

2. 태그 자체를 치환하기 

 

var text = "hello <script>alert(1);</script> world"; 

text = text.replace(/\<script>.*\<\/script>/gi, '');

 

결과 : hello  world

 

참조: https://harui.tistory.com/113

'-- JavaScript' 카테고리의 다른 글

textarea에 maxlength 설정하기  (0) 2020.07.17
SNS 공유  (0) 2020.04.14
페이지 갱신없이 주소변경  (0) 2018.03.12
IE11 new Date() Invalid Date  (0) 2018.02.07
javascript로 user agent 변경하기  (0) 2018.02.07
posted by 어린왕자악꿍