|
分類:[JavaScript]
<script language="javascript"> function nextfocus( code, next ) { if( code == 13 ) { document.all.item( next ).focus(); } } </script> ・ ・中略 <form id="form1" runat="server" enctype="multipart/form-data" defaultfocus="TextBox1" > <div class="div2"> <label style="font-size: xx-large; font-weight: bold; color: #000000; text-decoration: underline;" >お問い合わせ</label> <table> <tr > <td bgcolor="#66FF99" align="center">アドレス</td> <td class="style1" align='left'> <asp:TextBox ID="TextBox1" runat="server" Width="292px" Wrap="False" autocomplete="off" onkeypress="nextfocus(window.event.keyCode,'TextBox2')" ></asp:TextBox> </td> </tr> <tr> <td bgcolor="#66FF99" >件名</td> <td class="style3" align="left"> <asp:TextBox ID="TextBox2" runat="server" Width="382px" autocomplete="off" onkeypress="nextfocus(window.event.keyCode,'TextBox3')" ></asp:TextBox> </td> </tr> textbo1からenter投下時、textbox2へフォーカスを移動したいのですが エラー: フォーカスをコントロールに移動できません。コントロールは表示されていない、使用できない状態、またはフォーカスを受け入れない種類です。となってしまいます。
|