在multiselect function里我想查是否Shift键 is pressed down. 这个function怎么 写呀? 多谢!
f*s
2 楼
有人做过吗?
r*m
3 楼
function isShiftKeyPressed(event){ if (event.shiftKey==1){ //alert("shift key pressed!"); return true; }else{ //alert("shift key NOT pressed!"); return false; } }
l*g
4 楼
what is your binary file?
【在 f*****s 的大作中提到】 : 有人做过吗?
s*p
5 楼
thanks! it works for IE. what about Firefox?
【在 r****m 的大作中提到】 : function isShiftKeyPressed(event){ : if (event.shiftKey==1){ : //alert("shift key pressed!"); : return true; : }else{ : //alert("shift key NOT pressed!"); : return false; : } : }
r*m
6 楼
The best way to get the answer is to google it. A question like this has been answered ONE THOUSAND times on the internet. Just go and get it. Have fun!
h*c
7 楼
在function开始的地方加一句 if(!event) event=window.event;
【在 s*****p 的大作中提到】 : thanks! it works for IE. what about Firefox?