私はJavaスクリプトの初心者です。キープレスと変更イベントについて少し混乱しています。
以下はサンプルコードです
$("input").live('change',function ()
{
Alert("Change event call");
});
/
$("input").live('keypress',function ()
{
Alert("Keypress event call");
});
Keypress イベントが call と change イベント コールの正確なタイミングはいつですか?