入力フィールドが 1 つしかなく、onChange および onKeyPress イベントを登録して、ユーザーが入力を終了するか、Enter キーを押したことを検出します。JavaScriptのみを使用する必要があります。助けてくれてありがとう。
私は持っている:
var load = function (){
//I want to trigger this function when user hit Enter key.
}
document.getElementById('co').onchange=load; //works great
document.getElementById('co').onKeyPress=load;
//not sure how to detect when user press Enter
html
//no form just a single input field
<input type='text' id='co'>