解决html页面上双击或者多次点击出现蓝色背景的问题

场景描述:通常在网页空白区域多次点击时,当前行会出现蓝色背景的问题,如下图所示:


解决html页面上双击或者多次点击出现蓝色背景的问题_第1张图片
image.png

经了解这是浏览器默认事件,阻止默认行为即可。

js解决方案
$('元素').bind("selectstart", function () { return false; });
或者
document.onselectstart=new Function("return false");
css解决方案
body{  

    -webkit-user-select:none; 
    -moz-user-select:none; 
    -ms-user-select:none; 
    user-select:none;
    }

你可能感兴趣的:(解决html页面上双击或者多次点击出现蓝色背景的问题)