zoukankan
html css js c++ java
js禁止复制,右键,选择,禁止另存为
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>豪情</title> <style> body{-moz-user-select:none;} </style> </head> <body oncopy="document.selection.empty()" oncut="return false" onselect="document.selection.empty()" ondragstart="return false" onselectstart="return false"> <script> //禁止右键 document.body.oncontextmenu=function(oEvent){ if(document.all){ oEvent=window.event; oEvent.returnValue=false; }else{ oEvent.preventDefault(); } } </script> <!-- 禁止复制 --> <noscript></noscript> <p>this is test content</p> </body> </html>
运行代码
查看全文
相关阅读:
Vue项目一、node.js和npm的安装和环境搭建
vue-cli脚手架目录(2.0)
你的程序要读入一系列正整数数据,输入-1表示输入结束,-1本身不是输入的数据。程序输出读到的数据中的奇数和偶数的个数。
100以内最大的能被17整除的整数
what is artificial Intelligence
画图
No understanding(2)
No understanding(1)
对决
谁是最好的Coder
原文地址:https://www.cnblogs.com/jikey/p/1730344.html
最新文章
第七次站立会议
人月神话阅读笔记01
软件工程概论学习进度条04
Spring事务
IOC注解
jdbcTemplate
Spring通知,顾问,增强
工厂增强
java面试题
Spring域属性和代理模式
热门文章
Spring AOP
MyBatis试题
Spring概念详解
Vue项目三、项目中碰到的问题详解
VUE四 axios详解
Ajax详解
VUE三 vue-router(路由)详解
VUE二 生命周期详解
VUE一 基础语法
Vue项目二、vue环境搭建以及Vue-cli使用及详解
Copyright © 2011-2022 走看看