JavaScript学习笔记

Window.event对象的若干问题

1、 鼠标按键的问题 
a) 在IE中
b) Window.event.button = 1   表示按下鼠标左键
c) Window.event.button = 2   表示按下鼠标右键
d) Window.event.button = 4   表示按下鼠标中键
e) Window.event.button = 0   表示什么也没有按下
f) 在Firefox中
g) Window.event.button = 0  表示按下鼠标左键
h) Window.event.button = 2  表示按下鼠标右键
i) Window.event.button = 1  表示按下鼠标中键

你可能感兴趣的:(JavaScript,C++,c,IE,firefox)