jQuery 自动完成和 gridview 页脚文本框 ASP.NET
<script src="JQuery/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="JQuery/jquery.autocomplete.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#<%=(GVOperatos.Footer.FindControl('txtEPFNo')).ClientID%>").
autocomplete('Search_EPFNo.ashx');});
</script>
我无法在 javascript 中获取 gridview 页脚文本框客户端 ID。如何获取该 ID。 谢谢。”
<script src="JQuery/jquery-1.4.1.min.js" type="text/javascript"></script>
<script src="JQuery/jquery.autocomplete.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#<%=(GVOperatos.Footer.FindControl('txtEPFNo')).ClientID%>").
autocomplete('Search_EPFNo.ashx');});
</script>
I cant get gridview footer textbox client id in javascript.how to get that one.
thanx.'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用自定义选择器来选择 ASP.NET 控件。这是一篇解释该方法的博客文章。当需要选择 ASP.NET 控件时它会派上用场。
http://lanitdev.wordpress.com/ 2009/06/08/扩展-jquery-to-select-asp-controls/
You can use a custom selector to select asp.net controls. Here is a blog post explaining the method. It comes in handy when needing to select asp.net controls.
http://lanitdev.wordpress.com/2009/06/08/extending-jquery-to-select-asp-controls/