Wednesday, December 23, 2009

innerHTML 에서 script 태그 넣기

innerHTML 에서 script 태그 넣기
글쓴이 : 로빈아빠
조회 : 281
http://yesyo.com/mintbbs/bbs/board.php?bo_table=javascript&wr_id=162 [3]
innerHTML 에서 script 태그 넣기

innerHTML 아래와 같이 script 태그를 넣으면 에러가 생기는 것을 볼수 있습니다.
Act.innerHTML = "";


innerHTML의 문자열에 script 가 들어 가서 문제가 생깁니다.
이것을 아래와 같이 수정하면 문제가 해결됩니다.
Act.innerHTML = "document.write('yesyo.com')";


php 에서 쓴다면 아래와 같이 쓸수 있습니다. 응용하세요.
function MalertDiv($msg,$w='',$url='',$sb='',$charset='euc-kr')	{	 		$_msg = "
".$msg."
"; echo " "; exit; } function str_innerHTML($str) { $str = str_replace('"', '\"', preg_replace("/\r\n|\r|\n/", "", $str)); $str = str_replace('', '', $str); return $str; }

2.리눅스끼리 파일 전송법 | 1. Linux 2008.12.16 17:

2.리눅스끼리 파일 전송법| 1. Linux2008.12.16 17:

scp -P 80 index.html 113.29.129.72:/root/

P : port, index.html (보낼 파일), 113.29.129.72(상대편 Linux OS 주소)

[root@cnyt01dlf001 cdn]# scp mem.sh 125.29.54.72:/tmp/
root@125.29.54.72's password:
mem.sh 100% 60 0.1KB/s 00:00


http://blog.daum.net/1500cc/8410981