动态设置输入框的值

时间:2012-04-12 16:20:40

标签: javascript asp.net

我有一个带有输入文本框控件的aspx页面,我想为其设置一个值。我想要它,以便在提交表单时,值会根据文本框的当前文本动态更改。有没有人知道如何在没有jquery的情况下做到这一点?

1 个答案:

答案 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" />