标签:选中 highlight UNC 文字 list event art dde function
//1.contextmenu 禁止鼠标右键菜单 document.addEventListener(‘contextmenu‘,function(e){ e.preventDefault(); }); //2.禁止选中文字 selectstart document.addEventListener(‘selectstart‘,function(e){ e.preventDefault(); });
禁止鼠标右键菜单(contextmenu) 与 禁止选中文字(selectstart)
标签:选中 highlight UNC 文字 list event art dde function
原文地址:https://www.cnblogs.com/lybweb/p/14927718.html