只要將滑鼠放在LinkButton上就會顯示訊息
移開就不顯示
因為ToolTip要等待,故有時會採此方式顯示
<asp:LinkButton ID="btntest" runat="server" class=" mousebtn "/>
<asp:Label ID="Label1" runat="server" Text="" class="note"></asp:Label>
<script type="text/javascript">
$(document).ready(function () {
$(".mousebtn").live('mouseover', function () { $(".note").text("顯示姓名"); }).live('mouseout', function () { $(".note").text(""); });
})
</script>
沒有留言:
張貼留言