最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Where to get the list of event types? - Stack Overflow

programmeradmin3浏览0评论

The official documentation only says:

The event's type, such as "click", "blur" or "keypress".

For iOS devices the touchstart is another event which is working. Where can I get the full list of all possible events? I like for example actually to get the event for the <select> event hasChanged(). Is this based on another library?

The official documentation only says:

The event's type, such as "click", "blur" or "keypress".

For iOS devices the touchstart is another event which is working. Where can I get the full list of all possible events? I like for example actually to get the event for the <select> event hasChanged(). Is this based on another library?

Share Improve this question edited Mar 8, 2013 at 13:22 Rahul 12.2k5 gold badges45 silver badges64 bronze badges asked Mar 8, 2013 at 12:04 loomiloomi 3,0963 gold badges27 silver badges29 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

Meteor doesn't define the events it supports — it simply creates a cross-browser event listener wrapper. If you wanted to create custom events and trigger them, Meteor would pick them up.

The native input events supported depends on the browser: the Mozilla Developer Network reference is a good place to start.

Th docs also says that all the DOM events are also possible in addition to click, focus, blur, etc.

Other DOM events are available as well, but for the events above, Meteor has taken some care to ensure that they work uniformly in all browsers.

You can see the list of available Javascript events here and here.

发布评论

评论列表(0)

  1. 暂无评论