因此,這可能很容易,但我無法實現。 我有3個文字輸入filter
類。我想要的是綁定一個功能search()
到onkeypress
事件。我知道我可以手動將它寫入像這樣的每個輸入onclick="search()"
,但我不想使用內聯的東西,只是原型功能。 我當前的代碼是:將事件監聽器附加到給定類的元素中
<input type="text" class="filter" id="id"/>
<input type="text" class="filter" id="title"/>
<input type="text" class="filter" id="quant"/>
和
Event.observe('.filter', 'keypress', function(){ // <<< this don't work :(
alert('yey!');
});
你說你*不*希望'prototypejs'的方法呢?這是不是意味着什麼?換句話說,你想要一個完整的非庫解決方案? – user113716 2010-12-19 16:32:56
對不起。錯字。我不想使用內聯'onclick =「search()」'。 10X。 – s3v3n 2010-12-19 16:36:18
我重新發布了我的答案。我會給出一個使用命名函數的更新。 – user113716 2010-12-19 16:38:46