JavaScriptを使用してマウスクリックをシミュレートする方法は?


137

私はそのdocument.form.button.click()方法を知っています。ただし、onclickイベントのシミュレーション方法を教えてください。

私はこのコードをStack Overflowのどこかで見つけましたが、それを使用する方法がわかりません:(

function contextMenuClick()
{
    var element= 'button'

    var evt = element.ownerDocument.createEvent('MouseEvents');

    evt.initMouseEvent('contextmenu', true, true,
         element.ownerDocument.defaultView, 1, 0, 0, 0, 0, false,
         false, false, false, 1, null);

    element.dispatchEvent(evt);
}

JavaScriptを使用してマウスクリックイベントを起動するにはどうすればよいですか?


3
そうすることで何を達成しようとしていますか?
エリック

@Nok Imchen-コードを入手した元の質問へのリンクを提供していただけますか?
Jared Farrish、

@Eric、以下のリンクと同じ
Nok Imchen '27

回答:


216

(prototype.jsなしで機能するように変更されたバージョン)

function simulate(element, eventName)
{
    var options = extend(defaultOptions, arguments[2] || {});
    var oEvent, eventType = null;

    for (var name in eventMatchers)
    {
        if (eventMatchers[name].test(eventName)) { eventType = name; break; }
    }

    if (!eventType)
        throw new SyntaxError('Only HTMLEvents and MouseEvents interfaces are supported');

    if (document.createEvent)
    {
        oEvent = document.createEvent(eventType);
        if (eventType == 'HTMLEvents')
        {
            oEvent.initEvent(eventName, options.bubbles, options.cancelable);
        }
        else
        {
            oEvent.initMouseEvent(eventName, options.bubbles, options.cancelable, document.defaultView,
            options.button, options.pointerX, options.pointerY, options.pointerX, options.pointerY,
            options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, options.button, element);
        }
        element.dispatchEvent(oEvent);
    }
    else
    {
        options.clientX = options.pointerX;
        options.clientY = options.pointerY;
        var evt = document.createEventObject();
        oEvent = extend(evt, options);
        element.fireEvent('on' + eventName, oEvent);
    }
    return element;
}

function extend(destination, source) {
    for (var property in source)
      destination[property] = source[property];
    return destination;
}

var eventMatchers = {
    'HTMLEvents': /^(?:load|unload|abort|error|select|change|submit|reset|focus|blur|resize|scroll)$/,
    'MouseEvents': /^(?:click|dblclick|mouse(?:down|up|over|move|out))$/
}
var defaultOptions = {
    pointerX: 0,
    pointerY: 0,
    button: 0,
    ctrlKey: false,
    altKey: false,
    shiftKey: false,
    metaKey: false,
    bubbles: true,
    cancelable: true
}

次のように使用できます。

simulate(document.getElementById("btn"), "click");

3番目のパラメーターとして 'options'を渡すことができることに注意してください。指定しないオプションは、defaultOptionsから取得されます(スクリプトの下部を参照)。したがって、たとえばマウス座標を指定したい場合は、次のようにすることができます。

simulate(document.getElementById("btn"), "click", { pointerX: 123, pointerY: 321 })

同様の方法を使用して、他のデフォルトオプションを上書きできます。

クレジットはkangaxに送っくださいこれが元のソースです(prototype.js固有)。


6
私の回答で述べたように、クレジットはkangaxに行く必要があります。私はそれをライブラリにとらわれないようにしました:)
TweeZz '27

このスクリプトにマウス座標を渡す方法は?
ドミトリー

1
私はあなたがマウス座標を渡すことができる方法の一例をポストを編集して追加されます...
TweeZz

1
これをCoffeeScriptモジュールに変換して、プロジェクトに簡単に含めることができます:github.com/joscha/eventr
Joscha

1
これは$(el).click()とどのように異なりますか。ソリューションが機能するため、jqueryオプションは機能しません
Silver Ringvee

53

以下は、ターゲット要素のクリック(または任意のマウスイベント)をシミュレートする純粋なJavaScript関数です。

function simulatedClick(target, options) {

  var event = target.ownerDocument.createEvent('MouseEvents'),
      options = options || {},
      opts = { // These are the default values, set up for un-modified left clicks
        type: 'click',
        canBubble: true,
        cancelable: true,
        view: target.ownerDocument.defaultView,
        detail: 1,
        screenX: 0, //The coordinates within the entire page
        screenY: 0,
        clientX: 0, //The coordinates within the viewport
        clientY: 0,
        ctrlKey: false,
        altKey: false,
        shiftKey: false,
        metaKey: false, //I *think* 'meta' is 'Cmd/Apple' on Mac, and 'Windows key' on Win. Not sure, though!
        button: 0, //0 = left, 1 = middle, 2 = right
        relatedTarget: null,
      };

  //Merge the options with the defaults
  for (var key in options) {
    if (options.hasOwnProperty(key)) {
      opts[key] = options[key];
    }
  }

  //Pass in the options
  event.initMouseEvent(
      opts.type,
      opts.canBubble,
      opts.cancelable,
      opts.view,
      opts.detail,
      opts.screenX,
      opts.screenY,
      opts.clientX,
      opts.clientY,
      opts.ctrlKey,
      opts.altKey,
      opts.shiftKey,
      opts.metaKey,
      opts.button,
      opts.relatedTarget
  );

  //Fire the event
  target.dispatchEvent(event);
}

これが実際の例です:http : //www.spookandpuff.com/examples/clickSimulation.html

DOM内の任意の要素のクリックをシミュレートできます。のようなものsimulatedClick(document.getElementById('yourButtonId'))が動作します。

あなたはにオブジェクトを渡すことができますoptionsかどうか、あなたがしたいマウスボタンのデフォルト(シミュレートするのを上書きするShift/ Alt/ Ctrlそれが受け入れるオプションが基づいているなど、開催されてもMouseEventのAPI

Firefox、Safari、Chromeでテストしました。Internet Explorerは特別な扱いを必要とするかもしれませんが、よくわかりません。


要素にclick()イベントがないように見えるChromeでは、これは私にとってはうまくいきました。
ハワードM.ルイスシップ

これはすばらしいtype: options.click || 'click'ことtype: options.type || 'click'ですが、おそらくそうなるはずです。
Elliot Winkler、2012年

このソリューションの問題は、含まれている要素をクリックしないことです。例えば。<div id = "outer"><div id = "inner"></div></div> simulatedClick(document.getElementById('outer'));内側の要素をクリックしません。
dwjohnston

1
ただし、これはイベントバブリングの動作方法ではありません。外側の要素をクリックすると、先祖はバブルが発生するときにクリックイベントを受け取りますが、その子はそうではありません。アウターdivにボタンまたはリンクが含まれていた場合を想像してみてください。アウターをクリックしてインナー要素のクリックをトリガーしたくない場合は、
Ben Hull、

5
||このような場合には演算子を使用しないでください。おっと、canBubble:options.canBubble || true,常に現在はtrueと評価され、5年間誰も気づかないようです。
Winchestro

51

マウスクリックをシミュレートするより簡単で標準的な方法は、イベントコンストラクターを直接使用してイベントを作成し、ディスパッチすることです。

このMouseEvent.initMouseEvent()メソッドは下位互換性のために保持されていますが、MouseEventオブジェクトの作成はMouseEvent()コンストラクターを使用して行う必要があります。

var evt = new MouseEvent("click", {
    view: window,
    bubbles: true,
    cancelable: true,
    clientX: 20,
    /* whatever properties you want to give it */
});
targetElement.dispatchEvent(evt);

デモ:http : //jsfiddle.net/DerekL/932wyok6/

これはすべての最新のブラウザで機能します。IEを含む古いブラウザの場合、 MouseEvent.initMouseEvent非推奨ですが、残念ながら使用する必要があります。

var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("click", canBubble, cancelable, view,
                   detail, screenX, screenY, clientX, clientY,
                   ctrlKey, altKey, shiftKey, metaKey,
                   button, relatedTarget);
targetElement.dispatchEvent(evt);

クリックしたいA要素にhref = "javascript:void(0)"があり、オブジェクトにアタッチされている別のクリックハンドラーに応答すると、これは失敗するようです。
deejbee 2017年

一般的なイベントをすばやく取得する方法はありますか?ボタンのクリックを簡単に発生できることに気づきましたが、上記のように新しいマウスイベントを作成するのではなく、単に参照できる標準の「mouseenter」、「mouseleave」はありませんか?
James Joshua Street、

12

Mozilla Developer Network(MDN)のドキュメントから、HTMLElement.click()が探しているものです。あなたはここでより多くのイベントを見つけることができます。


2
@Ercksen MDNページが言うように、それはそれをサポートする要素(たとえば、<input>タイプの1つ)と共に使用された場合にのみ要素のクリックイベントを発生させます。
クリストフ

9

デレクの答えに基づいて、私はそれを確認しました

document.getElementById('testTarget')
  .dispatchEvent(new MouseEvent('click', {shiftKey: true}))

キー修飾子でも期待どおりに機能します。そして、私が見る限り、これは非推奨のAPIではありません。このページでも確認できます



-1

JavaScriptコード

   //this function is used to fire click event
    function eventFire(el, etype){
      if (el.fireEvent) {
        el.fireEvent('on' + etype);
      } else {
        var evObj = document.createEvent('Events');
        evObj.initEvent(etype, true, false);
        el.dispatchEvent(evObj);
      }
    }

function showPdf(){
  eventFire(document.getElementById('picToClick'), 'click');
}

HTMLコード

<img id="picToClick" data-toggle="modal" data-target="#pdfModal" src="img/Adobe-icon.png" ng-hide="1===1">
  <button onclick="showPdf()">Click me</button>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.