在我的 jqGrid 的一列上,我从后端传输数字,然后使用 loadComplete 事件和查找表,我将这些数字转换为适当的字符串表示形式,问题是,转换完成后,一次用户将鼠标指针放在其中一个转换后的单元格上方,仍然会出现带有数字的烦人工具提示。
我该如何解决这个问题?
截屏:
代码:
loadComplete: function(){
$('td[aria-describedby="list2_relevancy"]').each(function(){
var rowId = $(this).siblings().filter('[aria-describedby="list2_id"]').html();
var statusId = $(this).html();
var innerHTML = typeof lookup[statusId] === 'undefined' ? get_phrase("New") : lookup[statusId];
$(this).html('<span style="cursor:pointer;font-weight:bold;text-decoration:underline;" onclick="showApproveList(' + rowId + ')">' + innerHTML + '</span>');
});
我该如何解决这个问题?
非常感谢任何帮助。