我将Google电子表格数据解析为表格。
当用户将鼠标悬停在单元格上时,我想在jQuery工具提示中显示单元格的数据。
这可能吗?我怎样才能做到这一点?我当前的代码如下,但它正在渲染所有具有相同数据的单元格。
jQuery(document).tooltip({
items:"[title],[data-title]",
content: function () {
var element = jQuery(this);
if ( element.is( "[data-title]" ) ) {
return element.data("title");
}
if ( element.is( "[title]" ) ) {
return element.attr( "title" );
}
}
});
jQuery (" #tablepress-1 td " ).attr('id', 'custom-table-data');
jQuery( " #tablepress-1 td " ).attr('title', jQuery("#custom-table-data").text() );