यहां एक शुद्ध जावास्क्रिप्ट फ़ंक्शन है जो एक लक्ष्य तत्व पर एक क्लिक (या किसी माउस घटना) का अनुकरण करेगा:
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आयोजित किया गया है, आदि। यह स्वीकार करता है विकल्प माउसइवेंट्स एपीआई पर आधारित हैं ।
मैंने फ़ायरफ़ॉक्स, सफारी और क्रोम में परीक्षण किया है। इंटरनेट एक्सप्लोरर को विशेष उपचार की आवश्यकता हो सकती है, मुझे यकीन नहीं है।