鼠标光标坐标在图像上:<br/>不工作

时间:2012-06-28 13:01:21

标签: javascript jquery

感谢我收到的建议here,我清理了我的代码,现在我正在使用纯jQuery。我对我发现here的脚本进行了轻微编辑,我得到了这个:

window.onload = function(){

    var tooltip = $( '<div id="tooltip">' ).appendTo( 'body' )[0];

$( 'img' ).
    each(function () {
        var pos = $( this ).position(),
            top = pos.top,
            left = pos.left,
            width = $( this ).width(),
            height = $( this ).height(); 
        $( this ).
            mousemove(function ( e ) {
                var x = e.pageX - left,
                    y = e.pageY - top;

                $( tooltip ).text( 'x = ' + x + ', y = ' + y ).css({
                    left: e.clientX + 10,
                    top: e.clientY + 10
                }).show();
            }).
            mouseleave(function () {
                $( tooltip ).hide();
            }); 

    });

};

我遇到了问题:我尝试将代码的一行更改为:

$( tooltip ).text( 'x = ' + x + '<br/> y = ' + y ).css({

但它不起作用。我没有打破这条线,而是得到了这个:

line break not working

1 个答案:

答案 0 :(得分:2)

变化:

$( tooltip ).text( 'x = ' + x + '<br/> y = ' + y ).css({

为:

$( tooltip ).html( 'x = ' + x + '<br/> y = ' + y ).css({