โค้ดห้ามคลิกขวา ห้ามคลุมดำ
ห้ามคลิกขวา ห้ามคลุมดำ
โค้ดสำหรับป้องกันการคลิกขวา และห้ามคลุมดำ บนเว็บไซต์ คัดลอกโค้ดไปใช้ได้เลยครับ
วิธีวางโค้ด
ไปที่>>รูปแบบ >>HTML/จาวาสคริปส์>> วางโค้ด >>บันทึก
1.โค้ดห้ามลากดำ+ห้าม ctrl+A,C ในโค้ดเดียว
3.โค้ดห้ามคลิกขวา
ไม่ให้ปรากฏข้อความใดๆ
วิธีวางโค้ด
ไปที่>>รูปแบบ >>HTML/จาวาสคริปส์>> วางโค้ด >>บันทึก
1.โค้ดห้ามลากดำ+ห้าม ctrl+A,C ในโค้ดเดียว
<script language="JavaScript1.2"> function disableselect(e){ return false } function reEnable(){ return true } //if IE4+ document.onselectstart=new Function ("return false") //if NS6 if (window.sidebar){ document.onmousedown=disableselect document.onclick=reEnable } </script> |
2.โค้ดห้ามคลิกขวา
**แทนสีน้ำเงินด้วยข้อความที่ต้องการให้ปรากฏ Do not click right..!!
**แทนสีน้ำเงินด้วยข้อความที่ต้องการให้ปรากฏ Do not click right..!!
<script language=JavaScript> <!-- var message="Do not click right..!!"; /////////////////////////////////// function clickIE() {if (document.all) {alert(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {alert(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} document.oncontextmenu=new Function("return false") // --> </script> |
3.โค้ดห้ามคลิกขวา
ไม่ให้ปรากฏข้อความใดๆ
<script language=JavaScript> <!-- /////////////////////////////////// function clickIE() {if (document.all) {alert(message);return false;}} function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) { if (e.which==2||e.which==3) {alert(message);return false;}}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;} else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;} document.oncontextmenu=new Function("return false") // --> </script> |
แสดงความคิดเห็น
9 ความคิดเห็น
ขอบคุณมากคับ
ตอบลบขอเอาไป Notes ในบล็อคผมน่อยนะครับ ขอบคุณครับ
ตอบลบได้ครับ
ลบขอบคุณ เว็บ " ทำบล๊อคกันดีกว่า "ด้วยนะครับที่แบ่งปันความรู้ และสิ่งดี ๆครับ
ตอบลบBy. ปัณณวิชญ์
ยินดีครับ
ลบนี้ครับ ผมทำได้แล้วครับ ผมสร้างเกี่ยวกับบล็อกงาน มาเยี่ยมชมกันได้ครับ...
ตอบลบhttp://jobnerdbux.blogspot.com/
ขอบคุณมากๆ เลยนะครับ..ที่แบ่งปันความรู้ และสิ่งดีๆ ให้
ตอบลบพี่ครับ แล้วถ้าเราต้องการให้กดในกลุ่มข้อความแล้วคลุมดำ แบบไม่ต้องกด ctrl+A,C ก็คลุมแล้วก๊อปให้เองเลย ต้องใส่โค้ดแบบไหนหรอครับ
ตอบลบCopy Text to Clipboard. Bottom Copy Text .
ลบโค้ด ปุ่ม คัดลอกข้อความไปยังคลิปบอร์ด คลิกที่ปุ่ม ก็จะคัดลอกข้อความที่กำหนดไว้ โดยไม่ต้อง Ctrl+c https://webblog2u.blogspot.com/2020/04/copy-text-to-clipboard.html