鼠标移上去之后,显示提示信息

本文介绍了一个简单的HTML和JavaScript实例,通过鼠标悬停在指定元素上显示提示信息,并跟随鼠标位置移动。该示例利用了HTML的基本标签和JavaScript的鼠标事件监听,实现了动态提示框的功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <span onmousemove="MessageShow()" onmouseout="Disappear()">123123123</span>
    <div id="Message" style="display: none; position: absolute; top: 30px 100px; width: 100px;
        height: 100px; background: #ff0000; color: #ffffff;">
        123
    </div>
</body>

    <script language="javascript">
        var tx;
        var ty;
        var message = document.getElementById("Message");
        function MessageShow(e) {
            message.style.display = "block";
            if (!e)
                e = window.event;
            if (e.pageX) {
                tx = e.pageX;
                ty = e.pageY;
            }
            if (e.clientX) {
                tx = e.clientX; ty = e.clientY;
            }
            message.style.left = tx + 10 + "px";
            message.style.top = ty + 10 + "px";
        }
        function Disappear() {
            message.style.display = "none";
        }
        function showmessgae() {
            message.style.display = "block";
        }
    </script>

</html>

 

--=====================================

 

ScriptManager.RegisterStartupScript(Page, this.GetType(), "DoSearch", "DoSearch()", true);
ClientScript.RegisterStartupScript(this.GetType(), "DoSearch", "DoSearch()");
Page.RegisterStartupScript("DoSearch", "DoSearch()");
ScriptManager.RegisterClientScriptInclude(this, this.GetType(), "Jqurey", "script/jquery-1.3.2-vsdoc-CN.js");

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值