• 鼠标移动,显示具体内容


    .div {margin:0 auto;width:1000px;text-align:right;}
            .markbox {
                border-radius: 5px;
                padding: 5px;
                background: #ffcc66;
                position: absolute;
            }
    $('#ms a').mouseover(function (e) {
            var x = e.pageX + 10 + 'px', y = e.pageY + 10 + 'px';
            var value = $(this).attr('title');
            $(this).attr('title', '');
            $div = '<span class="markbox" style="left:' + x + ';' + "top:" + y + '">' + value + '</span>';
            $('.markbox').css({'left': x, 'top': y});
            $(this).parent().append($div);
            return false
        }).mouseout(function () {
            $(this).attr('title', $('.markbox').html())
            $('.markbox').remove();
            return false
        }).mousemove(function (e) {
            var x = e.pageX + 10 + 'px', y = e.pageY + 10 + 'px';
            $('.markbox').css({'left': x, 'top': y});
            return false
        })
    <td align="center" id="ms"><a href="javascript:void(0)" title="<?php echo $v['content']; ?>">详情</a></td>
  • 相关阅读:
    4d
    加载数据
    刘亮给的帮助
    加载数据
    选中并高亮显示
    ArcEngine
    接口编程
    好的参考文献
    在本地安装 wordpress
    C#读取EXCEL数据
  • 原文地址:https://www.cnblogs.com/isungge/p/8891331.html
Copyright © 2020-2023  润新知