我正在尝试为rowInserted事件中的Jtable行设置工具提示:
$('#JTable').find(".jtable tbody tr:eq(" + index + ")").css("title", 'Tooltip text');
但它不起作用。
提前致谢
答案 0 :(得分:0)
请尝试使用.attr()而不是.css()
示例:
$('#JTable').find(".jtable tbody tr:eq(" + index + ")").attr("title", 'Tooltip text');
或者你可以使用jQuery库来看看https://jqueryui.com/tooltip/
希望这会对你有所帮助。