取消拖动&选拔活动

时间:2012-08-23 18:35:41

标签: javascript-events internet-explorer-8 selection drag

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

1 个答案:

答案 0 :(得分: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;
  }
}