2009. 7. 9. 20:56
JavaScript String replace 그거/Tech2009. 7. 9. 20:56
오랜만에 JavaScript를 했더니.. 머리 쥐난다. -_-;
예전에 표준을 지키지 않고 코딩(?)하던 이후로는 거의 처음하는것 같은데..
좀 헤맸다는. ㅎㅎ
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><title>TEST</title>
<script language="JavaScript">
<!--
function gogo() {
var str="<font size='3'>This is test</font>"
// str에서 < 를 모두 찾아서 < 로 치환
var str2=str.replace(/\</g, "<");
// str에서 > 를 모두 찾아서 > 로 치환
var str2=str2.replace(/\>/g, ">");
document.getElementById("str").value=str;
document.getElementById("content").value=str2;
}
//-->
</script>
</head>
<body onLoad="javascript:gogo()">
<textarea cols=50 rows=5 id="str"></textarea>
<br>
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
<form name="frm">
<textarea cols=50 rows=5 id="content"></textarea>
</form>
</body>
</html>
<html>
<head><title>TEST</title>
<script language="JavaScript">
<!--
function gogo() {
var str="<font size='3'>This is test</font>"
// str에서 < 를 모두 찾아서 < 로 치환
var str2=str.replace(/\</g, "<");
// str에서 > 를 모두 찾아서 > 로 치환
var str2=str2.replace(/\>/g, ">");
document.getElementById("str").value=str;
document.getElementById("content").value=str2;
}
//-->
</script>
</head>
<body onLoad="javascript:gogo()">
<textarea cols=50 rows=5 id="str"></textarea>
<br>
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
<form name="frm">
<textarea cols=50 rows=5 id="content"></textarea>
</form>
</body>
</html>
# 결과
'그거 > Tech' 카테고리의 다른 글
[C 컴파일] 컴파일시 필요한 library 찾기 (0) | 2009.09.07 |
---|---|
WebLogic에서 Managed Server 생성 및 설정하기 (0) | 2009.08.28 |
오랜만의 쉘 스크립트 (0) | 2009.07.08 |
Today's IBM Developerworks Article 2008.10.29 (0) | 2008.10.29 |
오랜만의 쉘스크립트 2탄(netstat 에서 포트별/상태별 개수 확인) (0) | 2008.09.30 |