本文介绍了如何使用Java脚本识别用户控件中的控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
用户控制代码(.ascx)
User Control Code(.ascx)
<asp:TextBox ID="txtname" runat="server"></asp:TextBox>
<input id="Button1" type="button" onclick="txtboxuserControl()" value="showtextboxcontentinalertmsg" />
Java脚本是
Java Script is
function txtboxuserControl()
{
var val=document.getElementById('<%= txtname.ClientID %>').value;
alert(val);
}
请为此提供解决方案
谢谢,
Chandrasekhar.K
Please give the solution for that
Thanks ,
Chandrasekhar.K
推荐答案
OnClientClick="return txtboxuserControl();"
代替onclick()
instead of onclick()
<input id="Button1" type="button" onclick="txtboxuserControl(''<%= txtname.ClientID %>'')" value="showtextboxcontentinalertmsg" />
和
and
function txtboxuserControl(controlId)
{
这篇关于如何使用Java脚本识别用户控件中的控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!