일반 소스보기 금지와 같이 사용하세요.
아래 소스는 body안에 삽입하세요.
<script language="JavaScript1.2">
/*
Disable right click script II (on images)- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/
var clickmessage="이미지를 쓸수 없습니다.!"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}
function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}
if (document.all||document.getElementById)
document.onmousedown=disableclick
else if (document.layers)
associateimages()
</script>
아래 소스는 body안에 삽입하세요.
<script language="JavaScript1.2">
/*
Disable right click script II (on images)- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/
var clickmessage="이미지를 쓸수 없습니다.!"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}
function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}
if (document.all||document.getElementById)
document.onmousedown=disableclick
else if (document.layers)
associateimages()
</script>
반응형
'인터넷정보' 카테고리의 다른 글
| 링크 글자에 네온사인 효과 주기 (0) | 2007.10.17 |
|---|---|
| 타이틀바에 메세지가 스크롤되는 소스 (0) | 2007.10.17 |
| 타이틀바에 메세지가 스크롤되는 소스 (0) | 2007.10.17 |
| 현재 페이지를 원클릭으로 프린트하게 도와주는 스크립트입니다. (0) | 2007.10.17 |
| 현재 페이지를 원클릭으로 프린트하게 도와주는 스크립트입니다. (0) | 2007.10.17 |
| 이미지 소스보기 금지태그 (0) | 2007.10.17 |
| 글씨가 위에서 아래로 떨어지면서 고정되는 스크립트 (0) | 2007.10.17 |
| 글씨가 위에서 아래로 떨어지면서 고정되는 스크립트 (0) | 2007.10.17 |
| 글씨가 오른쪽 위에서 튀어나와 고정 되는 소스 (0) | 2007.10.17 |
| 글씨가 오른쪽 위에서 튀어나와 고정 되는 소스 (0) | 2007.10.17 |