首页 > Web开发 > 详细

怎样用JS获取ASP.NET服务器控件的客户端ID

时间:2015-04-06 15:37:52      阅读:301      评论:0      收藏:0      [点我收藏+]

虽然简单,不过曾经困扰多时,还是记录一下吧。

 

来源:http://mou518.blog.163.com/blog/static/1756052222010111434428828/

 

因为经常服务器控件在运行编译后ID是变化了的,如

<asp:TextBox ID="txtName"runat="server"></asp:TextBox>

运行编译后的结果可能是

<input name="ctl00$ContentPlaceHolder1$txtName " type="text" id="ctl00_ContentPlaceHolder1_ txtName" />

 

如果直接用document . getElementById(“txtName”)是获取不了的,

要用 document. getElementById(“<%= txtName.ClientID%>”)

 

 

相关文章:http://www.cnblogs.com/sophist/archive/2011/05/19/2050731.html

 

怎样用JS获取ASP.NET服务器控件的客户端ID

原文:http://www.cnblogs.com/huashanqingzhu/p/4395854.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!