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>
运行代码
查看全文
相关阅读:
SharePoint中获取当前登录的用户名
SharePoint 2013 图文开发系列之InfoPath入门
在InfoPath中如何获取当前用户的信息(Profile)
更新当前列并添加其他列
poj3067 Japan
poj2481 Cows
poj1195 Mobile phones
poj2299 Ultra-QuickSort
lower_bound()和upper_bound
hdu4339 Query
原文地址:https://www.cnblogs.com/jikey/p/1730344.html
最新文章
poj 3107 Godfather(树的重心)
HDU 1561 The more, The Better(树形背包)
hdu 1011 Starship Troopers(树形背包)
P2014 选课(树形背包)
java 字符串(String)常用技巧及自建方法模块汇总
Hibernate 查询数据库中的数据
java FastJSON的使用
010 Android Fragment之间的通信(用fragment替换掉XML布局文件中的一个线性布局)
009 Android Fragment实现微信底部导航
008 Android Fragment原理及应用
热门文章
Navicat 导出sql文件和导入sql文件
java web 工程创建及servlet简单使用
计算机网络基础知识
048 自己动手——快速搭建Android应用服务器
在sharepoint 2010 中 安装和配置smtp和pop3的电子邮件
三态工作流
隐藏网站的方法
表单模版命令进行部署
SharePoint2013打开管理表单模版 页面InfoPath 表单库的表单 (SharePoint 2013)
Infopath发布
Copyright © 2011-2022 走看看