.net获取js中值的方法

发布时间:2020-02-08编辑:脚本学堂
本文介绍下,在asp.net写的代码中,获取js脚本中值的方法,分享一个小例子,供大家学习参考。

首先,试了如下的方法:
 

复制代码 代码示例:
document.getElementById("t_shenhe").value = "123";
<asp:TextBox ID="t_shenhe" runat="server" readonly="true" Width="95%" ></asp:TextBox>

如果以上没有效果,可以试下这个:
 

复制代码 代码示例:
document.getElementById("txtRead").disabled='disabled';