如何在Jtable行中设置工具提示

时间:2015-07-05 04:23:51

标签: jquery jquery-jtable

我正在尝试为rowInserted事件中的Jtable行设置工具提示:

 $('#JTable').find(".jtable tbody tr:eq(" + index + ")").css("title", 'Tooltip text');

但它不起作用。

提前致谢

1 个答案:

答案 0 :(得分:0)

请尝试使用.attr()而不是.css()

示例:

$('#JTable').find(".jtable tbody tr:eq(" + index + ")").attr("title", 'Tooltip text');

或者你可以使用jQuery库来看看https://jqueryui.com/tooltip/

希望这会对你有所帮助。