이것도 완전 쉽다.....ㅡㅡ;
우선 아래의 함수가 선언되어 있어야 한다.
Head 부분이건 따로 불러오건..아무튼!
그리고 이름은 아무렇게나 바꿔도 관계없다.
나도 다른데서 보고 내맘대로 바꾼거니...^^;
<head>
<script type="text/javascript">
function copyClipBoard(URL) {
if (window.clipboardData.setData("text", URL))
alert("URL is copied in your clipboard");
else
alert("Coping URL is failed");
}
</script>
</head>
<script type="text/javascript">
function copyClipBoard(URL) {
if (window.clipboardData.setData("text", URL))
alert("URL is copied in your clipboard");
else
alert("Coping URL is failed");
}
</script>
</head>
사용법은 아래와 같다.
<a href="javascript:copyClipBoard('http://godpage.tistory.com')">
<img src="img/data/event/event_0321/img01_btn.gif" width="60" height="60" border="0" />
</a>
즉.. <img src="img/data/event/event_0321/img01_btn.gif" width="60" height="60" border="0" />
</a>
copyClipBoard('복사하고싶은내용') 이라는 것이다.
아따..쉽다...ㅋ
보고 잘 모르겠다 싶으면, 뭘 잘 모르겠는지 댓글을 남겨주시면
답해드릴 수 도 있습니다..ㅋ
제가 블로그에 매일 들어오는건 아니라서..^^;
진짜 심하게 궁금하시면 wapj@네이버로 메일주세요.^^
'개발관련 > 웹개발' 카테고리의 다른 글
탭 순서 설정하기 (1) | 2008.03.26 |
---|---|
브라우저 구별하는 스크립트 (0) | 2008.03.24 |
마우스 오른쪽 클릭 안되게 하기 (1) | 2008.03.06 |
이미지로 submit버튼 만들기 (0) | 2008.01.19 |
[Struts]saveToken() 을 이용한 중복 명령 막기 (0) | 2007.12.27 |