場景描述:通常在網(wǎng)頁空白區(qū)域多次點(diǎn)擊時,當(dāng)前行會出現(xiàn)藍(lán)色背景的問題,如下圖所示:
經(jīng)了解這是瀏覽器默認(rèn)事件身冬,阻止默認(rèn)行為即可。
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;
}