1

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

4

1 回答 1

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" />
于 2012-04-12T16:26:55.873 回答