Joomla 2.5 添加了以下代码:
window.addEvent('domready', function() {
$$('.hasTip').each(function(el) {
var title = el.get('title');
if (title) {
var parts = title.split('::', 2);
el.store('tip:title', parts[0]);
el.store('tip:text', parts[1]);
}
});
var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: false});
});
现在 - 我知道我可以编辑 html 行为文件:
library/joomla/html/html/behavior.php 将其注释掉 - 但这不是最好的解决方案。
已尝试但均无效: 1. http://flexicontent.org/forum/index.php?f=23&t=4909&rb_v=viewtopic 2. http://www.jsnippets.net/snippets/php/remove-call-to -j工具提示