当我在图像按钮上按住鼠标时,如何在鼠标旁边显示一个与文本相关的小图像按钮?

时间:2012-12-25 09:58:22

标签: asp.net

我有一个图像按钮,当我在图像按钮上按住鼠标时,想要在鼠标旁边显示一个小文本

2 个答案:

答案 0 :(得分:1)

使用ToolTip属性在悬停时显示文字....

你的意思是显示imagebtn工具提示吗?如果您只需要显示工具提示,请在aspx页面中尝试这个

 <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/css.PNG" ToolTip="my testing" />

或在cs页面

ImageButton1.Attributes.Add("title", "mytesting");

答案 1 :(得分:0)

如果我们没有将按住误认为Hover,那么ToolTip将是最佳选择。

但是如果您想要在鼠标按钮关闭时想要文本,那么您可以处理mousedownmouseup个事件

$('elementSelector').mousedown(function(){
    //...code to show text besides the element..
})

$('elementSelector').mouseup(function(){
    //...code to hide text besides the element..
})