<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="demo">学校安全教育平台移动版由中国教育学会主办: 1、为教育部门及学校提供数据查询、发通报及发送紧急预警信息等; 2、为教师提供授课提醒、数据查询、给学生及家长发送安全提醒等; 3、方便学生和家长学习安全知识、参与安全活动、接收安全提醒和预警信息等。</div> <script src="../js/jquery-2.1.1.min.js"></script> <script> var target = document.getElementById("demo"); setSelected(target, false); function setSelected(target, boo) { //设置文字是否可以复制boo=true时可以复制,否则禁止复制 if (typeof target.onselectstart != "undefined") { //IE target.onselectstart = function() { return boo; } } else if (typeof target.style.MozUserSelect != "undefined") { //Firefox /*MozUserSelect有三个值: *1.none表示所有子元素都不能被选择 *2.-moz-all子元素的所有文字都可以被选择 *3.-moz-none子元素的所有文字都不能选择,但input除外 */ if (boo) target.style.MozUserSelect = "-moz-all"; else target.style.MozUserSelect = "none"; } else { //other target.onmousedown = function() { return boo; } } } </script> </body> </html>
禁止复制
最新推荐文章于 2024-05-26 20:46:20 发布