$('.selector').qtip({
content: {
text: function(api) {
return $(this).children('.tip').clone();
}
},
style: {
classes: 'ui-tooltip-rounded',
width: 210
},
position: {
my: 'bottom center',
at: 'bottom center',
viewport: $(window)
},
hide: {
fixed: true,
delay: 500
},
events: {
show: function(event, api) {
$('.selector').css('border', '1px solid black');
}
}
});
我正在使用 qtip 2 插件,但我想更改特定选择器('this')而不是所有选择器。
上面的代码在页面上的所有“提示”图标周围绘制了一个黑色边框......有没有办法(使用 qtip2)引用特定的“提示”图形('.selector')?