我正在使用在 Chrome 资源文件 (chrome://resources/js/util.js) 中找到的此功能,并且在 Google Chrome 上运行良好。
/**
* Disables text selection and dragging.
*/
function disableTextSelectAndDrag() {
// Disable text selection.
document.onselectstart = function(e) {
e.preventDefault();
}
// Disable dragging.
document.ondragstart = function(e) {
e.preventDefault();
}
}
我想在 Internet Explorer 8 中取消此事件,但这不起作用。
如何在 IE8 中取消此事件?