当表格单元格悬停在鼠标上时,我正在尝试在鼠标旁边制作一个 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 及更高版本中工作。