<html>
<head>
<title>textarea의 내용을 클립보드에 담아 처리하기 </title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script language="javascript">
// 클립보드에 있는 값
var cbData = "";
function view_tag()
{
// 값 읽어내기
cbData = window.clipboardData.getData('Text');
alert(cbData);
}
function select_tag()
{
document.theForm.theArea.select();
}
function copy_tag()
{
document.theForm.theArea.select();
window.clipboardData.setData('Text', document.theForm.theArea.value);
var bSuccess = window.clipboardData.setData('Text', document.form_tag.tag.value);
document.execCommand('Copy');
if (bSuccess) alert('성공적으로 본문의 내용이 클립보드로 복사되었습니다.');
else alert('본문의 내용을 클립보드로 복사하는데 실패했습니다.');
document.execCommand('Copy');
}
</script>
</head>
<body bgcolor="#FFFFFF">
<div id="Layer1" align="center">
<form name="theForm">
<textarea name="theArea" cols="40" rows="20">
이것이 복사될문자열이다........
....
다음은 영문..
text to be copied
</textarea>
</form>
</div>
<div align=center>
<input type=button value="태그선택" onclick="select_tag()">
<input type=button value="태그선택복사" onclick="copy_tag()">
<input type=button value="클립보드보기" onclick="view_tag()">
<input type=button value="창닫기" onclick="window.close()">
</div>
</body>
</html>
<head>
<title>textarea의 내용을 클립보드에 담아 처리하기 </title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script language="javascript">
// 클립보드에 있는 값
var cbData = "";
function view_tag()
{
// 값 읽어내기
cbData = window.clipboardData.getData('Text');
alert(cbData);
}
function select_tag()
{
document.theForm.theArea.select();
}
function copy_tag()
{
document.theForm.theArea.select();
window.clipboardData.setData('Text', document.theForm.theArea.value);
var bSuccess = window.clipboardData.setData('Text', document.form_tag.tag.value);
document.execCommand('Copy');
if (bSuccess) alert('성공적으로 본문의 내용이 클립보드로 복사되었습니다.');
else alert('본문의 내용을 클립보드로 복사하는데 실패했습니다.');
document.execCommand('Copy');
}
</script>
</head>
<body bgcolor="#FFFFFF">
<div id="Layer1" align="center">
<form name="theForm">
<textarea name="theArea" cols="40" rows="20">
이것이 복사될문자열이다........
....
다음은 영문..
text to be copied
</textarea>
</form>
</div>
<div align=center>
<input type=button value="태그선택" onclick="select_tag()">
<input type=button value="태그선택복사" onclick="copy_tag()">
<input type=button value="클립보드보기" onclick="view_tag()">
<input type=button value="창닫기" onclick="window.close()">
</div>
</body>
</html>
댓글 0
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
18 | Applet 에서 JavaScript 를 호출 | 박상현 | 2003.10.13 | 2414 |
17 | 색상표 | 박상현 | 2003.10.10 | 1771 |
» | [javascript]textarea의 내용을 클립보드에 담아 처리하기 | 박상현 | 2003.10.09 | 3679 |
15 | [제로보드] 일반페이지 인증하기 | 박상현 | 2003.10.09 | 1967 |
14 | 시간안에 응답하지 않는함수는 에러(혹은 exception)처리 | 박상현 | 2003.10.08 | 2046 |
13 | 자바스크립트사용시 주의점 | 운영자 | 2003.10.06 | 1899 |
12 | excel로 자료 출력 | 운영자 | 2003.10.06 | 2387 |
11 | batch 작업 | 박상현 | 2002.02.13 | 2020 |
10 | 수정된 StringTokenizer | 박상현 | 2001.12.17 | 2579 |
9 | java에서 system의 property확인 jsp파일 | 박상현 | 2001.10.27 | 2358 |
8 | 프리페어스테이트먼트에 ? 표 자리에 값을 셋팅후 만들어진 SQL 문을 보는 유틸 | 운영자 | 2003.09.18 | 3391 |
7 | RAS암호 시스템의 구현 | 박상현 | 2001.10.16 | 3232 |
6 | JCE정보 보는 소스 | 박상현 | 2001.10.16 | 2399 |
5 | 테두리및 가로줄, 세로줄이 1px인 테이블 만들기 | 운영자 | 2003.10.01 | 2531 |
4 | table 외곽에 테두리만 1pixel로 만들기 | 운영자 | 2003.10.01 | 2249 |
3 | BB설명 | 운영자 | 2003.09.26 | 2159 |
2 | 창닫기 전에 물어보기 | 운영자 | 2003.09.26 | 2574 |
1 | popup창 띄우는 4가지 방법 | 운영자 | 2003.09.24 | 4004 |