如何使用JavaScript模拟鼠标单击?


137

我知道这种document.form.button.click()方法。但是,我想知道如何模拟onclick事件。

我在堆栈溢出的某个地方找到了此代码,但我不知道如何使用它:(

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
您想通过这种方式实现什么?
埃里克(Eric)

@Nok Imchen-您能否提供您从中获取代码的原始问题的链接?
贾里德·法瑞希

@Eric,与下面给出的链接相同
Nok Imchen 2011年

Answers:


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");

请注意,作为第三个参数,您可以传入'options'。您未指定的选项取自defaultOptions(请参见脚本底部)。因此,例如,如果您想指定鼠标坐标,则可以执行以下操作:

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

您可以使用类似的方法来覆盖其他默认选项。

归功于kangax是原始来源(特定于prototype.js)。


6
如我的回答所述,功劳应该归功于kangax。我确实使它与图书馆无关:)
TweeZz

如何将鼠标坐标传递给此脚本?
德米特里(Dmitry)2012年

1
我将编辑后,并添加你能如何鼠标坐标传递一个例子..
TweeZz

1
我将其转换为CoffeeScript模块,以便于轻松包含在您的项目中:github.com/joscha/eventr
Joscha

1
与$(el).click()有什么不同,因为您的解决方案对我
有用

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持有,等它接受的基础上的选项MouseEvents API

我已经在Firefox,Safari和Chrome中进行过测试。我不确定Internet Explorer可能需要特殊处理。


这对我来说很棒,在Chrome上,其中的元素似乎没有click()事件。
霍华德·刘易斯,

这很好-除非type: options.click || 'click'应该这样type: options.type || 'click'
艾略特·温克勒

该解决方案的问题在于它不会单击包含的元素。例如。<div id = "outer"><div id = "inner"></div></div> simulatedClick(document.getElementById('outer'));不会单击内部元素。
dwjohnston

1
但是,这不是事件冒泡的工作原理-如果单击外部元素,则其祖先会收到单击事件,因为它冒泡了,但其子事件却没有。想象一下,如果您的外部div包含按钮或链接-您不希望单击外部就触发内部元素的单击。
Ben Hull 2015年

5
请勿在||此类情况下使用运算符,因为哎呀,canBubble:options.canBubble || true,现在总是评估为true,而且显然五年内没人会注意到它。
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

有没有一种快速的方法来获取常见事件?我注意到我可以轻松地单击按钮,但是没有标准的“ mouseenter”,“ mouseleave”属性可以参考,而不是像上面那样创建新的mouseevent吗?
詹姆斯·约书亚街

12

从Mozilla开发人员网络(MDN)文档中,您正在寻找HTMLElement.click()。您可以在此处找到更多事件。


2
@Ercksen正如MDN页面所说,它仅在与支持元素的元素(例如<input>类型之一)一起使用时才触发元素的click事件。
Christophe

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>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.