我正在使用 .tooltip 对整个页面中的每一个进行简单描述。它适用于所有内容,但页面的标题名称(不仅仅是图标和菜单)显示在屏幕的左下方。如何仅对以单词“step”开头的标题标签进行例外处理?谢谢。
$.widget( "ui.tooltip", {
version: "1.9.2",
options: {
content: function() {
return $( this ).attr( "title" );
},
hide: true,
// Disabled elements have inconsistent behavior across browsers (#8661)
items: "[title]:not([disabled])",
position: {
my: "left top+15",
at: "left bottom",
collision: "flipfit flip"
},
show: true,
tooltipClass: null,
track: false,
// callbacks
close: null,
open: null
},