开发者

How to raise mouse and keyboards events in JS

开发者 https://www.devze.com 2022-12-11 06:46 出处:网络
Is there a way to send mouse events and keyboard even开发者_开发知识库ts in JavaScript? Does all browsers support this need?

Is there a way to send mouse events and keyboard even开发者_开发知识库ts in JavaScript? Does all browsers support this need?

-Datte


Yes, browsers support this. Its not necessarily an easy thing to work with though.

Have a read through:

http://www.w3schools.com/js/js_events.asp

And look up some tutorials in google. There are plenty around!


All browsers do support event models, but Internet Explorer's events work completely differently from the standards implemented by Firefox, Chrome, Safari, etc.

If you're going to be building an application that's especially event-intensive, I'd recommend picking up a Javascript framework like JQuery, which solves all the browser incompatibilities for you.

http://docs.jquery.com/Events

0

精彩评论

暂无评论...
验证码 换一张
取 消