我有幾個輸入,它們被動態創建綁定幾個輸入到事件的OnKeyPress
<input style="width:100%" class="fileDescription" type="text" name="' + descriptionId + '" id="' + descriptionId + '" placeholder="Write a file description, hit Enter to save" />
我想KeyPress事件附加到所有這些輸入和通過輸入的ID。怎麼做?我試圖使用下面的代碼來附加事件,但這不起作用。此外,我不知道如何將輸入字段的ID傳遞給綁定事件。
$('.fileDescription').bind('keypress', function(e) {
e.preventDefault();
alert("Works!");
});
你可以使用'this.id' – 2011-03-25 11:42:40
@aSeptik - 所以,你可以更新。謝謝 – 2011-03-25 11:45:34