我也在使用jQuery。我試圖調用一個方法keyPressEvent按下輸入按鈕。代碼有什麼問題在javascript中輸入關鍵事件
var AplOperations = function() {
// this function i want to call when an enter button is pressed
this.keyPressEvent = function() {
// my code goes here
}
}
var myOpr = new AplOperations();
document.onkeyup = myOpr.keyPressEvent();
在'}'.'後面有逗號// this.keyPressEvent = function(){ //我的代碼在這裏 } **,** ' –
已編輯。這不是問題 –
@DipakDelvadiya,首先,功能本身並沒有啓動 –