如何在.net c#代码 增加按钮的onmouseover鼠标移动上去的事件?
vs2005c#代码中按钮只有Click事件,如何实现按钮的onmouseover鼠标移动上去的事件,比如鼠标移动到按钮上,另一textbox1控件就等于“abc"。直接...
vs2005 c#代码 中按钮只有Click事件,如何实现按钮的onmouseover鼠标移动上去的事件,比如鼠标移动到按钮上,另一textbox1控件就等于“abc"。直接给代码就可以了,谢谢!
老大!默认就是没有这个事件啦! 展开
老大!默认就是没有这个事件啦! 展开
2个回答
展开全部
楼主的需求应在客户端中实现,代码如下:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript">
function show()
{
document.all.TextBox1.value="abc";
}
function hide()
{
document.all.TextBox1.value="";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
文本1<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" onmouseover="show()" onmouseout="hide()" /></div>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<script language="javascript">
function show()
{
document.all.TextBox1.value="abc";
}
function hide()
{
document.all.TextBox1.value="";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
文本1<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" onmouseover="show()" onmouseout="hide()" /></div>
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询