-1
我如何在這種情況下使用bind()。 我需要綁定一個函數...但下面的代碼調用它。我如何使用bind()。我閱讀了MDN文檔,但沒有意義。
bind_enter_key和bind_file_upload是我寫的方法。
m5('signin_pass',bind_enter_key(event,interface_signin)); // this does not work
m5('upload_file',bind_file_upload);
// just a minimzer
function m5(a,b)
{
return document.getElementById(a).onkeypress=b;
}
EXACT相同的代碼(甚至具有相同的代碼註釋)通過兩個不同的用戶名發佈在兩個單獨的問題中。要麼這是家庭作業,要麼一個人通過兩個用戶名進行雙重發布。該dup [這裏](http://stackoverflow.com/questions/8058862/how-do-i-pass-arguments-to-bound-methods/8058993#8058993)已被回答。 – jfriend00