1

当表格单元格悬停在鼠标上时,我正在尝试在鼠标旁边制作一个 div 弹出窗口。

<td onmouseover="bubblePopup("param1","param2");">This is the cell</td>

是否可以使用我的 bubblePopup 函数获取光标位置。

function bubblePopup(param1, param2){
    var newdiv = document.createElement('div');
    newdiv.setAttribute('id', param1);

    newdiv.style.width = "200px";
    newdiv.style.height = "80px";

    newdiv.style.position = "absolute";
    newdiv.style.left = cursorX + "px";
    newdiv.style.top = cursorY + "px";

    newdiv.innerHTML = "content";
    document.body.appendChild(newdiv);
}

我更喜欢原生 javascript(但也会考虑 jquery 选项)。它只需要在 Firefox 3.5 及更高版本中工作。

4

2 回答 2

4

我拍了一把小提琴,可能会让你走上正轨。

http://www.jsfiddle.net/dduncan/WccJw/2/

(编辑以稍微美化它)

于 2011-02-11T15:44:23.820 回答
3

http://jsfiddle.net/CtCXE/

var td = document.getElementById("thetd");

td.onmouseover = function(e){bubblePopup(e, 'param1','param2')};

function bubblePopup(e, param1, param2){
    var newdiv = document.createElement('div');
    newdiv.setAttribute('id', param1);

    newdiv.style.width = 200;
    newdiv.style.height = 80;

    var cursorX = e.pageX,
        cursorY = e.pageY;

    newdiv.style.position = "absolute";
    newdiv.style.left = cursorX + 'px';
    newdiv.style.top = cursorY + 'px';

    newdiv.innerHTML = "content";
    document.body.appendChild(newdiv);
}
于 2011-02-11T15:40:45.770 回答