[제나플러스] 글 복사시 출처 자동으로 넣어주기
페이지 정보
본문
스크립트
사용하기
<script type="text/javascript" language="javascript">
// 글 복사시 출저 삽입함수 호출
function contents_cp()
{
if (window.event)
{
window.event.returnValue = true;
window.setTimeout('attach_kinref()', 25);
}
}
// 클립보드에 들어갈때 출처 삽입하기
function attach_kinref()
{
if (window.clipboardData) // IE
{
// get data from clipboard
var txt = window.clipboardData.getData('Text');
// attach the source at the end of text
// 아래 빨간색 글씨 부분에 자신이 원하는 출처 글귀를 넣으면 됨.
txt = txt + '\r\n출처 : 상현넘™ [SHBLITZ.NET]';
// set data to clibboard
var result = window.clipboardData.setData('Text', txt);
}
}
</script>
// 글 복사시 출저 삽입함수 호출
function contents_cp()
{
if (window.event)
{
window.event.returnValue = true;
window.setTimeout('attach_kinref()', 25);
}
}
// 클립보드에 들어갈때 출처 삽입하기
function attach_kinref()
{
if (window.clipboardData) // IE
{
// get data from clipboard
var txt = window.clipboardData.getData('Text');
// attach the source at the end of text
// 아래 빨간색 글씨 부분에 자신이 원하는 출처 글귀를 넣으면 됨.
txt = txt + '\r\n출처 : 상현넘™ [SHBLITZ.NET]';
// set data to clibboard
var result = window.clipboardData.setData('Text', txt);
}
}
</script>
사용하기
* 문서 전체에 반영하기
<body onCopy='contents_cp();'> html 내용 </body>
* 특정 부분에만 반영하기
<div onCopy='contents_cp();'> 내용 </div>
<body onCopy='contents_cp();'> html 내용 </body>
* 특정 부분에만 반영하기
<div onCopy='contents_cp();'> 내용 </div>
추천0
관련링크
-
http://www.shblitz.net/970
1543회 연결
댓글목록
등록된 댓글이 없습니다.