1. 오른쪽 마우스 클릭 방지
<script language=JavaScript>
try {
document.attachEvent('oncontextmenu', function () {
return false;
});
} catch(e) {}
</script>
2. 드래그 금지 (Ctrl + C 금지)
<html>
<head>
<title></title>
<script>
<!--
function dragno()
{
return false;
}
function defencespell()
{
eval('document.'+event.propertyName+'=dragno');
}
//-->
</script>
</head>
<body onpropertychange="defencespell()" oncontextmenu="return false;" ondragstart="return false;" onselectstart="return false;">
</body>
</html>
펌 : http://jong970105.tistory.com/257
그래서 복사도 그림도 펌 금지 할때는
<html>
<head>
<title></title>
<script language=JavaScript>
try {
document.attachEvent('oncontextmenu', function () {
return false;
});
} catch(e) {}
</script>
<script>
<!--
function dragno()
{
return false;
}
function defencespell()
{
eval('document.'+event.propertyName+'=dragno');
}
//-->
</script>
</head>
<body onpropertychange="defencespell()" oncontextmenu="return false;" ondragstart="return false;" onselectstart="return false;">
</body>
</html>
'끄적끄적' 카테고리의 다른 글
화이트 태닝 - 피부 톤 변화 ing (5) | 2020.11.03 |
---|---|
철분제 추천 - 훼마틴 시럽, 훼마틴 캡슐, 산타몬 플러스 액 (4) | 2020.08.25 |
헤어트리트먼트 - 올라플렉스3-olaplex3 (0) | 2020.08.18 |
날씨 어플 비교 - weathernews, accweather, Yr (0) | 2020.08.16 |