国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網(wǎng)站 > WEB開發(fā) > 正文

JS禁止右鍵、CTRL+C、查看源文件

2024-04-27 15:19:18
字體:
供稿:網(wǎng)友

禁用粘貼事件

//禁用ctrl + V 和粘貼$("#input").unbind("paste");//粘貼事件,獲取文本框內(nèi)容$("#input").bind(function(){ var el = $(this); setTimeout({//獲取粘貼文本需setTimeout控制時間 var text = $el.val(); alert(text); },100);});

禁止ctrl + C

<script type="text/javascript">//禁止ctrl復(fù)制document.onkeydown=function(){ if((event.ctrlKey) && (window.event.keycode==67)){ event.returnValue=false; alert("Ctrl+C被禁止啦!"); }}document.onmousedown=function(){ if(event.button==2){ event.returnValue=false; alert("右鍵被禁止啦!"); }}</scription>

//禁止查看源文件function clear(){Source=document.body.firstChild.data;document.open();document.close();document.title=”看不到源代碼”;document.body.innerHTML=Source;}</script>//圖片下載限制function Click(){if(window.event.srcElement.tagName==”IMG”){alert(‘圖片直接右鍵’);window.event.returnValue=false;}}document.oncontextmenu=Click;<META HTTP-EQUIV=”imagetoolbar” CONTENT=”no”> 插入圖片時加入galleryimg屬性<img galleryimg=”no” src=””>//禁止右鍵保存function click() {alert(‘對不起,您不能保存此圖片,謝謝您的理解和支持!’) }function click1() {if (event.button==2) {alert(‘對不起,您不能保存此圖片,謝謝您的理解和支持!’) }}function CtrlKeyDown(){if (event.ctrlKey) {alert(‘不當?shù)目截悓p害您的系統(tǒng)!’) }}document.onkeydown=CtrlKeyDown;document.onselectstart=click;document.onmousedown=click1;function document.onmousedown(){ if(event.button==2||event.button==3) { alert( “右健被禁止 “) return false }}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 蓝山县| 安龙县| 东宁县| 普定县| 乌拉特中旗| 东丰县| 阿勒泰市| 沈丘县| 杂多县| 综艺| 建湖县| 鞍山市| 安丘市| 商丘市| 惠东县| 临沂市| 延津县| 禄丰县| 卓尼县| 阜平县| 阿克苏市| 双桥区| 高淳县| 那曲县| 贵阳市| 湖口县| 南阳市| 宜昌市| 泸州市| 翼城县| 平武县| 赤壁市| 鄂伦春自治旗| 盐边县| 长兴县| 天津市| 义乌市| 平阴县| 溆浦县| 溆浦县| 上蔡县|