我有一个带有输入文本框控件的aspx页面,我想为其设置一个值。我想要它,以便在提交表单时,值会根据文本框的当前文本动态更改。有没有人知道如何在没有jquery的情况下做到这一点?
答案 0 :(得分:1)
我认为这就是你要求的,但不确定:
<强> JavaScript的:强>
function ChangeValue(currentTxtBox, newValue)
{
var otherTxtbox = document.getElementById('<%=otherTxtbox.ClientID%>');
otherTxtbox.value = currentTxtBox.value;
}
<强>标记:强>
<asp:textbox id="bla" runat="server" onchange="ChangeValue(this)" />
<asp:textbox id="otherTxtbox " runat="server" />