0

Chrome Resources Files (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 に答える