1

画像ボタンがあり、画像ボタンをマウスで押したときにマウスの横に小さなテキストを表示したい

4

2 に答える 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が最善の選択肢です。

ただし、マウスボタンが押されたときにテキストが必要な場合はmousedownmouseupイベントを処理する必要があります

$('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 に答える