JS文件中写CSS代码达到共用文件

来源:互联网 发布:传奇3数据库 编辑:程序博客网 时间:2024/05/29 03:22
//禁用右键菜单 IE和chrome
document.oncontextmenu = function (){ return false;}  
//防止内容被选中默认状态是true IE和chrome
document.onselectstart = function (){ return false;}  
//禁止鼠标在网页上拖动IE和chrome
document.ondragstart = function (){ return false;}  
//兼容火狐
css_string = '*{-webkit-user-select: none; -khtml-user-select: none; -moz-user-select:none; -ms-user-select: none;user-select: none;}';
document.write('<style type="text\/css">' + css_string + '<\/style>'); 
//兼容火狐

备注:适用于偷懒分子(⊙0⊙) 
1 0