admin管理员组文章数量:1345050
I am using a ASP.NET(3.5) page and I have a text box called txtName.
I want to read the value with JavaScript like so but it does not work.
var Name = document.getElementById(txtName).value;
alert(Name);
Even this does not want to work:
var Name = document.FormName.txtName.Value;
alert(Name);
This work with plain HTML pages but not with my ASP.NET page, why?
I am using a ASP.NET(3.5) page and I have a text box called txtName.
I want to read the value with JavaScript like so but it does not work.
var Name = document.getElementById(txtName).value;
alert(Name);
Even this does not want to work:
var Name = document.FormName.txtName.Value;
alert(Name);
This work with plain HTML pages but not with my ASP.NET page, why?
Share Improve this question edited Jul 22, 2010 at 8:30 abatishchev 100k88 gold badges301 silver badges442 bronze badges asked Jul 21, 2010 at 11:18 EtienneEtienne 7,20143 gold badges110 silver badges163 bronze badges2 Answers
Reset to default 8It sounds like txtName
is the server-side ID of your control. ASP.NET will use a different client-side ID when it renders the control as HTML: probably something like ctl00_Container_txtName
.
You need to use the control's ClientID
property to get the client-side ID, and then use that in your getElementById
call:
var name = document.getElementById('<%=txtName.ClientID%>').value;
You'd better use the Jquery.then,juest call:
$('<%=txtName.ClientID%>').value;
本文标签: Reading ASPNET text box value with JavaScriptStack Overflow
版权声明:本文标题:Reading ASP.NET text box value with JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808012a2542533.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论