为什么这不起作用?
var holdingctrl = false;
$(document).keydown("q",function(e) {
if(holdingctrl == true)
alert("Holding CTRL and pressing Q: Success.");
e.preventDefault();
});
$(document).keyup("q",function(e) {
holdingctrl == false
});
下面的这个例子工作得很好,但我在上面做错了什么?
$(document).keyup("q",function(e) {
alert("ONLY pressing Q: Success.");
});