txtZipテキストボックスでEnterキーを押すと、JSを呼び出すのではなく、他のページに移動します別のテキストボックスの値をtxtZipに等しい値に設定したい
<asp:TextBox Style="text-align: center" ID="Txt_Zip" runat="server" Width="120px"
Text="Zip" onkeypress="return runScript(event)"></asp:TextBox>
<asp:TextBox Style="text-align: center" ID="Txt_Second" runat="server" Width="120px"
Text="Zip"></asp:TextBox>
function runScript(e)
{
if (e.which == 13 || e.keyCode == 13)
{
var zip =document.getElementById("txtZip").value;
document.getElementById("txt_Second").value=zip;
}
}
クリックすると別のページにリダイレクトするボタンも1つあるので、テキストボックスでEnterキーを押すとそれを制限する方法は、JSを呼び出すだけですか??
あなたの提案を願っています
ありがとう