HTML5教程

[HTML5 DOM] dispatchEvent

本文主要是介绍[HTML5 DOM] dispatchEvent,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Most of the time,we use DOMElement.click():

button.click()

 

Actually it is a shortcut for:

button.dispatchEvent(
    new MouseEvent('click', {
        bubble: true,
        cancelable: true,
        composed: true, 
        button: 0
    })
)

 

这篇关于[HTML5 DOM] dispatchEvent的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!