我正在使用,
http://struts.jgeppert.com/struts2-jquery-grid-showcase/index.action
展示我的网格。这里的工具提示在所有行的鼠标上都可见。我想隐藏工具提示。
答案 0 :(得分:3)
这是jqGrid的一个例子。您可以通过以下方式删除jquery的标题:
$(document).ready(function(){
$("table.ui-jqgrid-btable td").each(function(){
$(this).removeAttr("title");
});
});
答案 1 :(得分:0)
找到一个对我有用的有用链接。感谢Palash Mondal。
http://burnignorance.com/javascript-performance-tips/hide-all-tool-tips-in-jqgrid/
添加:cmTemplate:{title:false},