摘要: /** * 禁用右键菜单 */ document.oncontextmenu = function(){ event.returnValue = false; }; /** * 禁用选中功能 */ document.onselectstart = function(){ event.returnVa 阅读全文
posted @ 2020-08-12 11:10 fqzh 阅读(201) 评论(0) 推荐(0)