Simulating click with javascript on document

后端 未结 2 1938
无人及你
无人及你 2020-12-30 12:17

Is it possible to simulate a click on a webpage using javascript but without defining a specific element, but rather just specifying the document?

I would have liked

2条回答
  •  醉酒成梦
    2020-12-30 12:56

    window.dispatchEvent should do the trick.

    
    
    

    Or... with extra MouseEvents information:

    
    
    

    The above examples will cause a click to be simulated on window when the button is clicked. An event listener is added to window to alert when clicked, so therefore clicking the button will indirectly trigger an alert.

    More info: http://www.howtocreate.co.uk/tutorials/javascript/domevents

提交回复
热议问题