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

时间:2011-05-27 21:33:48

标签: javascript javascript-events

我知道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触发鼠标单击事件?

7 个答案:

答案 0 :(得分:196)

(修改后的版本使其无需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");

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

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

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

积分应该转到kangaxHere是原始来源(prototype.js特定的)。

答案 1 :(得分:47)

这是一个纯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可能需要特殊处理,我不确定。

答案 2 :(得分:36)

更简单且more standard模拟鼠标点击的方法是直接使用the event constructor创建事件并发送它。

  

虽然保留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);

答案 3 :(得分:11)

从Mozilla开发者网络(MDN)文档中,HTMLElement.click()正是您所需要的。您可以找到更多活动here

答案 4 :(得分:3)

根据Derek的回答,我确认了

document.getElementById('testTarget')
  .dispatchEvent(new MouseEvent('click', {shiftKey: true}))
即使使用键修饰符,

也能按预期工作。就我所知,这不是一个弃用的API。你可以verify on this page as well

答案 5 :(得分:2)

您可以使用elementFromPoint

document.elementFromPoint(x, y);

所有浏览器均支持:https://caniuse.com/#feat=element-from-point

答案 6 :(得分:-1)

JavaScript代码

<img id="picToClick" data-toggle="modal" data-target="#pdfModal" src="img/Adobe-icon.png" ng-hide="1===1">
  <button onclick="showPdf()">Click me</button>

HTML代码

".write": "!data.exists() || newData.exists()"