web-dev-qa-db-ja.com

onMouseMoveマウス位置を取得

Javascriptで、onMouseMoveのjavascriptイベントハンドラ内で、ページの上部を基準にしてx、y座標のマウス位置を取得するにはどうすればよいですか?

19
Andrew Chang

jQueryを使用できる場合、 this が役立ちます。

<div id="divA" style="width:100px;height:100px;clear:both;"></div>
<span></span><span></span>
<script>
    $("#divA").mousemove(function(e){
      var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
      var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
      $("span:first").text("( e.pageX, e.pageY ) - " + pageCoords);
      $("span:last").text("( e.clientX, e.clientY ) - " + clientCoords);
    });

</script>

ここに純粋なjavascriptのみの例を示します。

var tempX = 0;
  var tempY = 0;

  function getMouseXY(e) {
    if (IE) { // grab the x-y pos.s if browser is IE
      tempX = event.clientX + document.body.scrollLeft;
      tempY = event.clientY + document.body.scrollTop;
    }
    else {  // grab the x-y pos.s if browser is NS
      tempX = e.pageX;
      tempY = e.pageY;
    }  

    if (tempX < 0){tempX = 0;}
    if (tempY < 0){tempY = 0;}  

    document.Show.MouseX.value = tempX;//MouseX is textbox
    document.Show.MouseY.value = tempY;//MouseY is textbox

    return true;
  }
26
TheVillageIdiot

マウス座標を見つけるためだけに d3.js を使用するのは少しやり過ぎかもしれませんが、d3.mouse(*container*)と呼ばれる非常に便利な関数があります。以下はあなたがやりたいことをする例です:

var coordinates = [0,0];
d3.select('html') // Selects the 'html' element
  .on('mousemove', function()
    {
      coordinates = d3.mouse(this); // Gets the mouse coordinates with respect to
                                    // the top of the page (because I selected
                                    // 'html')
    });

上記の場合、x座標はcoordinates[0]、y座標はcoordinates[1]。これは非常に便利です。なぜなら、'html'タグ付き(例:'body')、クラス名(例:'.class_name')、またはid(例:'#element_id')。

5
MuffinTheMan

これは試され、すべてのブラウザで動作します:

   function getMousePos(e) {
       return {x:e.clientX,y:e.clientY};
   }

これで、次のようなイベントで使用できます。

  document.onmousemove=function(e) {
       var mousecoords = getMousePos(e);
       alert(mousecoords.x);alert(mousecoords.y);
  };
5
Sayanjyoti Das

特にmousemoveイベントでは、猛烈な勢いで発火します。ハンドラーを使用する前に、ハンドラーを削減しておくとよいでしょう。

var whereAt= (function(){
    if(window.pageXOffset!= undefined){
        return function(ev){
            return [ev.clientX+window.pageXOffset,
            ev.clientY+window.pageYOffset];
        }
    }
    else return function(){
        var ev= window.event,
        d= document.documentElement, b= document.body;
        return [ev.clientX+d.scrollLeft+ b.scrollLeft,
        ev.clientY+d.scrollTop+ b.scrollTop];
    }
})()

document.ondblclick = function(e){alert(whereAt(e))};

4
kennebec