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

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

308328 次浏览

(修改后的版本使其不需要 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)。

下面是一个纯 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,等等)。它接受的选项是基于 鼠标事件 API

我已经在火狐,Safari 和 Chrome 上测试过了,Internet Explorer 可能需要特殊处理,我不确定。

从 Mozilla Developer Network (MDN)文档中,你可以找到更多的事件。

模拟鼠标单击的一种更简单和 更标准的方法是直接使用 事件构造函数创建事件并分派它。

虽然向下兼容保留了 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);

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>

根据德里克的回答,我证实了

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

即使使用关键修饰符也能正常工作。在我看来,这并不是一个不受欢迎的 API。你可以 在这个页面上验证

你可以使用 ElementFromPoint:

document.elementFromPoint(x, y);

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

不要依赖过时的 API 特性。所有浏览器都支持下面的示例

if (document.createEvent) {


// Create a synthetic click MouseEvent
let event = new MouseEvent("click", {
bubbles: true,
cancelable: true,
view: window
});


// Dispatch the event.
link.dispatchEvent(event);


}