<p class="sycode"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <br /> < html xmlns="http://www.w3.org/1999/xhtml"> <br> <head> <br /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8 " /> <br> <title>キーボード入力イベントは 1 ページに複数回バインドされています</title> <br> <script src="js/jquery-1.10.2.min.js"></script> <br> </head> <br> <body> <br> <script type="text/javascript"> <br> //キーボードイベントを登録 <br> document.onkeydown = function(e) { <br> //キャリッジリターンイベントをキャプチャ <br> = (typeof events!= 'unknown') ? window.event : e; <br> if(ev.keyCode == 13 && document.activeElement.id == "msg") {//activeElement アクティビティ イベントは、入力フィールドで使用されます <br> alter("Get content: " + document.activeElement.value); <br> }else if(ev.keyCode==13&& document.activeElement.name=='temp1'){ <br> $("# temp" ).click(); <br> } <br> } <br> <br> <br> function show1(){ <br> $("#temp").css("color","red"); <br> } <br> </script> <br> < ;input type="text" id="msg" value=""> <br> <form> <br /> <input name="temp1" type="text" /> =" テキスト" /> <br> <input name="temp1" type="text" /> <br /> <a onclick="show1();" title="1" id="temp"> / a> <br> </form> <br> </html></p>