<body>
    <form id="form1" runat="server">
    <div>
        <a href="#" title="这是我的鼠标链接">提示</a>
        <p>
            <a href="#" class="higt1" title="这是我的鼠标链接1">提示1</a></p>
        <p>
            <a href="#" class="higt1" title="这是我的鼠标链接2">提示2</a></p>
        <p>
            <a href="#" title="这是我的鼠标链接3">提示3</a></p>
        <p>
            <a href="#" title="这是我的鼠标链接3">提示3</a></p>
    </div>
    </form>
</body> <script type="text/javascript">
        $(function() {
            var x = 20;
            var y = 20;            $("a.higt1").mouseover(function(e) {
                this.mytitle = this.title;
                this.title = "";
                var toop = "<div id='tishi'>" + this.mytitle + "</div>";
                $("body").append(toop);
                $("#tishi")
                .css({
                    "top": (e.pageY + y) + "px",
                    "left": (e.pageX + x) + "px"
                }).show("fast");
            }).mouseout(function() {
                this.mytitle = this.title;
                $("tishi").remove();
            }).mouseover(function(e) {                $("#tishi")
                .css({ "top": (e.pageY + y) + "px", "left": (e.pageX + x) + "px" });            });
        })
    
    </script>
想实现的效果是 鼠标移动上去有提示的功能,就和自带的title 差不多,有提示的功能。这段代码也是从网上学过来的,但是实现不了 刚学jquery也解决不了了,来这里求助下。