我正在尝试构建一个类似于鼠标悬停放大图像的 jQuery 插件 - 但在表格行上:
var trEnlargedCssMap =
{
position: 'absolute',
left: '50px',
top: '50px',
'font-size': '14px'
}
$('table tr').hover(
function()
{
$(this).clone().css(trEnlargedCssMap).show();
},
function()
{
$(this).hide();
})
它不接近工作,任何提示?