当前位置:Gxlcms > asp.net > jquery中如何获得服务器控件实现思路

jquery中如何获得服务器控件实现思路

时间:2021-07-01 10:21:17 帮助过:49人阅读

jquery中
代码如下:

$("#<%=StoreName.ClientID %>").focus(function() {
$("#<%=Label5.ClientID %>").val("请输入真实的店铺名称");
$("#<%=Label5.ClientID %>").css("color", "#666");
});

html中
代码如下:

<table>
<tr>
<td>
店铺名称:
</td>
<td>
<asp:TextBox ID="StoreName" runat="server"></asp:TextBox>
</td>
<td>
<asp:Label ID="Label5" runat="server" Text=" 真实的店铺名称,0-10个字。(必填项)"></asp:Label>
</td>
</tr>
</table>

人气教程排行