js实用函数

1、oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
2、onpaste="return false" 不准粘贴
3、oncopy="return false;" oncut="return false;" 防止复制
4、<link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
5、<link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
6、//添加新的样式表
var addStyle = function(rules) {
var styleElement = document.createElement('style');
styleElement.type = 'text/css';
if ( Ext.isIE ) {   // 判断IE浏览器
styleElement.styleSheet.cssText = rules;
}
else {
var frag = document.createDocumentFragment();
frag.appendChild(document.createTextNode(rules));
styleElement.appendChild(frag);
}
document.getElementsByTagName('head')[0].appendChild(styleElement);
};

你可能感兴趣的:(js函数)