单击Shift +鼠标左键单击时出现Internet Explorer浏览器问题,文本自动突出显示

时间:2016-01-20 04:58:14

标签: javascript jquery html css internet-explorer

我有多个选择选项的渲染html表。当我点击shift +鼠标左键单击时,td元素文本自动在ie(Internet Explorer)浏览器中突出显示(chrome,firefox,safari工作正常)。你能帮我解决一下这个问题。

由于

1 个答案:

答案 0 :(得分:0)

使用下面的代码正常工作。

document.onselectstart = function() { return false; }
document.onmousedown = function() { return false; }

由于