你的问题没有向我澄清!但假设你也有按钮来改变文字,你可以根据需要改变它
<asp:TextBox ID="testText" runat="server" ClientIDMode="Static">hi this is a world!</asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button"></asp:Button>
在您的 Page_Load 上添加 javascritp 事件(我正在将 onclick 事件添加到用于处理 javascript 函数的按钮)
Button1.Attributes.Add("onclick", "javascript:clientsite()");
然后我认为您想从客户端站点更改服务器站点值,因此为此您必须替换该值
function clientsite() {
var servervalue = document.getElementById("testText").value;
var replaceIt = servervalue.replace(servervalue, "hahaha");
document.getElementById("testText").value = replaceIt;
}
现在,当您单击按钮时,它将替换或更改从服务器端到客户端的值
可能对您有帮助
快乐编码 :D