鼠标移动,显示具体内容

.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>

 

转载于:https://www.cnblogs.com/isungge/p/8891331.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值