這是行不通的輸入按鍵事件不工作
HTML
<input type="text" class="form-control" id="newtopic" placeholder="Add Topic">
腳本
$(document).bind('keypress',function(){
$("#newtopic").keydown(function(e){
if(e.keyCode==13){
alert("Hello World");
}
}); });
你試過$(「#newtopic」)KEYUP – BKM
它的工作:: http://jsfiddle.net/a46p6/1/。 –
你的代碼已經在工作(檢查@ C-link的小提琴) –