■31162 / ) |
Re[4]: フォーカスが移動できません |
□投稿者/ 初歩 (8回)-(2009/01/15(Thu) 20:13:09)
|
<%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>form1</title> <script language="javascript" type="text/javascript"> function nextfocus(code,next){ if(code ==13){ document.all.item(next).focus(); } } </script> </head> <body> <form name="form1"> <input type="text" name="TextBox1" onkeypress="nextfocus(window.event.keyCode,'TextBox2')" id="TextBox1" language="javascript" onclick="return Text1_onclick()" /><br /> <input type="text" name="TextBox2" onkeypress="nextfocus(window.event.keyCode,'TextBox3')" id="TextBox2" /><br /> <input type="text" name="TextBox3" id="TextBox3" /><br /> <input type="button" name="Button1" value="Button" onclick="submit()" /> </form> </body> </html> ↑ ではフォーカスがちゃんと移動しますが「31065」のhtmlではフォーカス移動できません。 ちなみにIE8です。なんか特別な指定があるのかな?
|
|