$(document).on("keypress", "form", function(event) { return event.keyCode != 13; });. 這將導致在keyCode上檢查表單內的每個按鍵。如果它不是13(Enter鍵),那麼它將 ...
確定! 回上一頁