我有一个图像按钮,当我在图像按钮上按住鼠标时,想在鼠标旁边显示一个小文本
问问题
786 次
2 回答
1
使用 ToolTip 属性在悬停时显示文本....
你的意思是显示 imagebtn 工具提示?如果您只需要显示工具提示,请在 aspx 页面中尝试这个
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/css.PNG" ToolTip="my testing" />
或在cs页面中
ImageButton1.Attributes.Add("title", "mytesting");
于 2012-12-25T10:14:02.187 回答
0
如果我们没有误以为按住,Hover
那么ToolTip
将是最好的选择。
但是如果你的意思是你想在鼠标按钮按下时有文本,你应该处理mousedown
和mouseup
事件
$('elementSelector').mousedown(function(){
//...code to show text besides the element..
})
$('elementSelector').mouseup(function(){
//...code to hide text besides the element..
})
于 2012-12-25T10:59:47.703 回答