[ javascript ] 주소를 입력받아서 그 주소의 소스를 textarea로 가져오기 / 소스보기
페이지 정보
작성자 웹지기 댓글 0건 조회 2,490회 작성일 18-09-30 19:15본문
[code]
<html>
<head>
<script>
//<!--
function DownloadDone(s)
{
oTextArea.value=s;
}
//-->
</script>
</head>
<body>
<IE:DOWNLOAD ID="oDownload" STYLE="behavior:url(#default#download)" />
<input type="text" value="/js/ex/" ID=oText size="45">
<input type="button" value="태그인넷 소스 가져 오기" onclick="oDownload.startDownload(oText.value, DownloadDone)">
<p>
<textarea id=oTextArea cols=100 rows=30 style="background-color: #efefef; font-size: 8pt; font-family: verdana; border:'2 outset';"></textarea>
<br>상대경로로 써주세요
</p>
</body>
</html>
[/code]
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.