/**
* 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);
}
};
var el = document.getElementById('anchorelementid');
el.onclick(); // Not entirely correct because your event handler will be called
// without an Event object parameter.
9条答案
按热度按时间muk1a3rh1#
**单击HTML元素:**只需执行
element.click()
. Most major browsers support this。**要重复单击多次:**向元素添加ID以唯一选择它:
并通过for循环调用JavaScript代码中的
.click()
方法:xxb16uws2#
您应该只使用click。对于更高级的事件触发,请使用dispatchEvent。
原始答案-已过时
下面是我在IE9+ http://jsfiddle.net/mendesjuan/rHMCy/4/中使用的
请注意,调用
fireEvent(inputField, 'change');
并不意味着它将实际更改输入字段。触发change事件的典型用例是当您以编程方式设置字段时,您希望调用事件处理程序,因为调用input.value="Something"
不会触发change事件。fslejnso3#
什么
does就是调用
l
的onclick
函数,也就是说,如果你已经用l.onclick = myFunction;
设置了一个,如果你没有设置l.onclick
,它什么也不做。模拟单击并激发所有事件处理程序,无论是使用
l.addEventHandler('click', myFunction);
添加的、HTML格式的还是以任何其他方式添加的。cigdeys34#
我很惭愧,有这么多不正确的或未公开的部分适用性。
最简单的方法是通过Chrome或Opera(我的示例将使用Chrome)使用控制台,在控制台中输入以下代码(通常为1行):
这将生成所需的结果
dly7yett5#
.click()
不适用于Android(查看mozilla docs,在移动的部分).您可以使用以下方法触发click事件:从this post开始
xlpyo6sf6#
使用测试框架
这可能会有帮助-http://seleniumhq.org/- Selenium是一个Web应用程序自动化测试系统。
您可以使用Firefox插件Selenium IDE创建测试
手动触发事件
要以正确的方式手动触发事件,您需要针对不同的浏览器使用不同的方法-
el.dispatchEvent
或el.fireEvent
,其中el
将是您的锚元素。我相信这两种方法都需要构造一个Event对象来传入。另一种不完全正确的快速而肮脏的方法是:
ijnw1ujt7#
IE9 +
用法示例:
来源:https://plainjs.com/javascript/events/trigger-an-event-11/
gojuced78#
请在任何位置调用触发函数,按钮将被单击。
utugiqy69#
善意警告:
element.onclick()
的行为与预期不同。它只运行onclick="" attribute
内的代码,但不触发默认行为。我有类似的问题,单选按钮没有设置为选中,即使
onclick
自定义函数运行良好。必须添加radio.checked = "true";
来设置它。可能同样的事情也发生在其他元素上(a.onclick()
之后应该还有window.location.href = "url";
)