0

我正在使用在 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 中取消此事件?

4

1 回答 1

1

尝试这个:

/**
 * Disables text selection and dragging on IE8 and below.
 */
function disableTextSelectAndDragIE8() {
  // Disable text selection.
  document.body.onselectstart = function() {
      return false;
  }

  // Disable dragging.
  document.body.ondragstart = function() {
      return false;
  }
}
于 2012-11-22T14:12:47.613 回答