如何触发JavaScript事件点击

我的网页上有一个超链接。出于测试的目的,我正在尝试自动单击超链接。是否有任何方法可以使用JavaScript模拟超链接上的50次单击?

<a href="#" target="_blank" onclick="javascript:Test("Test");">MSDN</a>

我正在寻找onClick事件触发器从JavaScript。

766008 次浏览

使用测试框架

这可能是有帮助的- http://seleniumhq.org/硒是一个web应用程序自动化测试系统。

您可以使用Firefox插件Selenium IDE创建测试

手动触发事件

为了以正确的方式手动触发事件,你需要为不同的浏览器使用不同的方法——el.dispatchEventel.fireEvent,其中el将是你的锚元素。我认为这两种方法都需要构造一个Event对象来传递。

另一种不完全正确的快捷方式是这样的:

var el = document.getElementById('anchorelementid');
el.onclick(); // Not entirely correct because your event handler will be called
// without an Event object parameter.

简单地做element.click()大多数主流浏览器都支持这一点


重复点击一次以上:为元素添加一个ID,以唯一地选择它:

<a href="#" target="_blank" id="my-link" onclick="javascript:Test('Test');">Google Chrome</a>

并在JavaScript代码中通过for循环调用.click()方法:

var link = document.getElementById('my-link');
for(var i = 0; i < 50; i++)
link.click();

更新

这是一个古老的回答。现在你应该只使用点击。对于更高级的事件触发,使用dispatchEvent

const body = document.body;


body.addEventListener('click', e => {
console.log('clicked body');
});


console.log('Using click()');
body.click();


console.log('Using dispatchEvent');
body.dispatchEvent(new Event('click'));

原来的答案

下面是我使用的:http://jsfiddle.net/mendesjuan/rHMCy/4/

更新到IE9+

/**
* Fire an event handler to the specified node. Event handlers can detect that the event was fired programatically
* by testing for a 'synthetic=true' property on the event object
* @param {HTMLNode} node The node to fire the event handler on.
* @param {String} eventName The name of the event without the "on" (e.g., "focus")
*/
function fireEvent(node, eventName) {
// Make sure we use the ownerDocument from the provided node to avoid cross-window problems
var doc;
if (node.ownerDocument) {
doc = node.ownerDocument;
} else if (node.nodeType == 9){
// the node may be the document itself, nodeType 9 = DOCUMENT_NODE
doc = node;
} else {
throw new Error("Invalid node passed to fireEvent: " + node.id);
}


if (node.dispatchEvent) {
// Gecko-style approach (now the standard) takes more work
var eventClass = "";


// Different events have different event classes.
// If this switch statement can't map an eventName to an eventClass,
// the event firing is going to fail.
switch (eventName) {
case "click": // Dispatching of 'click' appears to not work correctly in Safari. Use 'mousedown' or 'mouseup' instead.
case "mousedown":
case "mouseup":
eventClass = "MouseEvents";
break;


case "focus":
case "change":
case "blur":
case "select":
eventClass = "HTMLEvents";
break;


default:
throw "fireEvent: Couldn't find an event class for event '" + eventName + "'.";
break;
}
var event = doc.createEvent(eventClass);
event.initEvent(eventName, true, true); // All events created as bubbling and cancelable.


event.synthetic = true; // allow detection of synthetic events
// The second parameter says go ahead with the default action
node.dispatchEvent(event, true);
} else  if (node.fireEvent) {
// IE-old school style, you can drop this if you don't need to support IE8 and lower
var event = doc.createEventObject();
event.synthetic = true; // allow detection of synthetic events
node.fireEvent("on" + eventName, event);
}
};

注意,调用fireEvent(inputField, 'change');并不意味着它将实际改变输入字段。触发变更事件的典型用例是当你以编程方式设置一个字段,并且你希望调用事件处理程序,因为调用input.value="Something"不会触发变更事件。

我很惭愧,有这么多不正确或未公开的部分适用性。

最简单的方法是通过Chrome或Opera(我的例子将使用Chrome)使用控制台。在控制台中输入以下代码(通常为一行):

var l = document.getElementById('testLink');
for(var i=0; i<5; i++){
l.click();
}

这将生成所需的结果

什么

 l.onclick();

调用lonclick函数,也就是说,如果你已经用l.onclick = myFunction;设置了一个。如果你没有设置l.onclick,它什么都不做。相比之下,

 l.click();

模拟单击并触发所有事件处理程序,无论是用l.addEventHandler('click', myFunction);添加的,还是在HTML中,或以任何其他方式添加的。

公平的警告:

element.onclick()没有像预期的那样运行。它只运行onclick="" attribute中的代码,但不会触发默认行为。

我有类似的问题,单选按钮没有设置为选中,即使onclick自定义功能运行正常。必须添加radio.checked = "true";来设置它。可能同样适用于其他元素(在a.onclick()之后也应该有window.location.href = "url";)

.click()不能用于Android(查看mozilla文档,在移动部分)。你可以用下面的方法触发点击事件:

function fireClick(node){
if (document.createEvent) {
var evt = document.createEvent('MouseEvents');
evt.initEvent('click', true, false);
node.dispatchEvent(evt);
} else if (document.createEventObject) {
node.fireEvent('onclick') ;
} else if (typeof node.onclick == 'function') {
node.onclick();
}
}

这篇文章

IE9 +

function triggerEvent(el, type){
var e = document.createEvent('HTMLEvents');
e.initEvent(type, false, true);
el.dispatchEvent(e);
}

使用的例子:

var el = document.querySelector('input[type="text"]');
triggerEvent(el, 'mousedown');

来源:https://plainjs.com/javascript/events/trigger-an-event-11/


请在按钮点击的任何地方调用触发功能。


<a href="#" id="myBtn" title="" >Button click </a>


function trigger(){
document.getElementById("myBtn").click();
}