当我在 txtZip 文本框上按 enter 键时它移动到其他页面而不是调用 JS 我想将另一个文本框值 eqaul 设置为 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;
}
}
因为我有一个按钮也可以在单击时重定向到另一个页面如何限制在文本框中按下回车键时只需调用 JS 吗?
希望您的建议
谢谢