Home >Web Front-end >JS Tutorial >How Can I Simulate a Mouse Click at Specific Coordinates in JavaScript?
It is possible to emulate a mouse click within a webpage using specified coordinates in JavaScript. However, it's important to note that this simulated click differs from a genuine click and cannot be utilized to manipulate cross-domain iframe documents.
Modern browsers, including Chrome, Firefox, Safari, and IE 6 and later, support this technique by providing access to document.elementFromPoint and HTMLElement.prototype.click(). Using these methods, you can:
For example, to click an element at coordinates (100, 200):
<code class="javascript">document.elementFromPoint(100, 200).click();</code>
This approach allows you to navigate links and submit forms even when the target element is not readily accessible through direct click events.
The above is the detailed content of How Can I Simulate a Mouse Click at Specific Coordinates in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!