Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- HTML5
- 톰캣
- RADIO
- 전자정부 표준프레임워크
- switch
- @RequestBody
- DB
- 날짜
- SSL
- spring form tag
- php
- 웹 플랫폼 설치 관리자
- Oracle
- checbox
- JSTL
- html
- 오라클
- null
- exception
- json
- MYSQL
- 이클립스
- 네이버스마트 에디터
- 문자열
- 스크립트
- 호환성
- 한글
- java
- maven
- jquery
Archives
- Today
- Total
개인적인 정리
HTML Escape Characters: Complete List 본문
http://www.theukwebdesigncompany.com/articles/entity-escape-characters.php
공백
< <
> >
& &
" : 쌍따옴표 "
가운데 점 : 취·창업형
copyright © : ©
function safe_tags(str) {
return str.replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>') ;
}
\ (통화 원 표시) : ₩
추가
ampersand (&) is escaped to &
double quotes (") are escaped to "
single quotes (') are escaped to '
less than (<) is escaped to <
greater than (>) is escaped to >
'HTML & CSS' 카테고리의 다른 글
브라우저내에서 화면캡쳐 html2canvas (0) | 2017.02.13 |
---|---|
Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported. (0) | 2017.02.13 |
툴팁 css (0) | 2016.12.19 |
[css]이미지 리사이징, 화면(영역)보다 이미지가 클 때 (0) | 2016.12.11 |
미디어 쿼리 기본 분기 (0) | 2016.12.05 |
레이어 팝업 (0) | 2016.11.23 |
input type="submit" (0) | 2016.11.11 |
label 사용 방법 ... 간단하게 (0) | 2016.11.10 |
Comments