<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 | 스크롤바를 따라다니는 메뉴판 | 박상현 | 2003.12.04 | 1575 |
17 | 스크롤바를 따라다니는 이미지 | 박상현 | 2003.12.04 | 1684 |
16 | 이벤트 종류알기 및 좌표 읽기 | 박상현 | 2003.12.03 | 1989 |
15 | 문서크기에 맞게 아이프레임폭 자동으로 조정하기 | 박상현 | 2003.11.17 | 1928 |
14 | 목록에서 선택된 라인에만 색칠하고 다른것은 이전색으로 변경하기 | 박상현 | 2003.11.13 | 1705 |
13 | 목록에서 다중 선택된 항목을 표시(특정색상)하고 체크박스를 선택해주는 스크립트 | 박상현 | 2003.11.07 | 2837 |
12 | 여러가지의 색으로 롤오버 효과및 항목을 선택시 선택된 색을 고정시키는 예제 | 박상현 | 2003.11.07 | 2212 |
11 | event.keyCode의 숫자표 | 박상현 | 2003.10.20 | 1863 |
10 | jsp페이지에서 popup창의 depth에 따른 메인 복귀 방법 달리하기... | 박상현 | 2003.10.14 | 3496 |
9 | 색상표 | 박상현 | 2003.10.10 | 1771 |
» | [javascript]textarea의 내용을 클립보드에 담아 처리하기 | 박상현 | 2003.10.09 | 3679 |
7 | 자바스크립트사용시 주의점 | 운영자 | 2003.10.06 | 1899 |
6 | excel로 자료 출력 | 운영자 | 2003.10.06 | 2387 |
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 |