event.which屬性返回為事件按下了鍵盤上哪個鍵或鼠標按鈕。
event.which
顯示按下了哪個鍵(ASCII值):
$("input").keydown(function(event){ $("div").text("Key: " + event.which); });測試看看?/?
顯示按下了哪個鍵:
$("input").keydown(function(event){ $("div").append(String.fromCharCode(event.which)); });測試看看?/?
檢查是否在<input>字段內(nèi)按下了空格鍵:
$("input").keydown(function(event){ if(event.which === 32){ $("div").text("您按下了'SPACE' 空格鍵"); } });測試看看?/?
顯示按下了哪個鼠標按鈕:
$("div").mousedown(function(event){ $(this).append("<br>鼠標被按下的鍵: " + event.which); });測試看看?/?
參數(shù) | 描述 |
---|---|
event | 該event的參數(shù)來自事件綁定功能 |