asp.net2.0(c#)中关于textbox失去焦点问题
我打算设置一个TxtID文本框,一个label1。当在该框中完成输入后焦点离开该框时(鼠标点击离开或按tab键离开)激活失去焦点的代码,在label1中显示TxtID的文...
我打算设置一个TxtID文本框,一个label1。当在该框中完成输入后焦点离开该框时(鼠标点击离开或按tab键离开)激活失去焦点的代码,在label1中显示TxtID的文本内容.
我发现asp.net2.0中控件没有lostfocus,看了网上的相关问题还没有试验成功,请高手指点该怎样
一楼不懂别瞎说,我问的是怎样给文本框实现相当于lostfocus的功能 展开
我发现asp.net2.0中控件没有lostfocus,看了网上的相关问题还没有试验成功,请高手指点该怎样
一楼不懂别瞎说,我问的是怎样给文本框实现相当于lostfocus的功能 展开
2个回答
展开全部
用JS去实现 ,我给你写了个例子
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript" type="text/javascript">
// <!CDATA[
function mylosefocus()
{
//alert(document.getElementById('<%=TextBox1.ClientID %>').value);
document.getElementById('<%=Label1.ClientID %>').innerText=document.getElementById('<%=TextBox1.ClientID %>').value;
}
// ]]>
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" onblur="return mylosefocus();"></asp:TextBox>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript" type="text/javascript">
// <!CDATA[
function mylosefocus()
{
//alert(document.getElementById('<%=TextBox1.ClientID %>').value);
document.getElementById('<%=Label1.ClientID %>').innerText=document.getElementById('<%=TextBox1.ClientID %>').value;
}
// ]]>
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" onblur="return mylosefocus();"></asp:TextBox>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询