我正在使用插件“tooltipster”,但我想将标题截断为 30 个字符并添加 hellips。
我有一个包含 3 个链接的列表。下面是代码并添加了示例链接
$('.tooltip').tooltipster({
animation: 'fade',
delay: 200,
touchDevices: false,
trigger: 'hover',
position: 'bottom',
theme: 'tooltipster-shadow'
});
$('.box a').each(function(){
if ($(this).attr('title').text().length > 20) {
$(this).attr('title').text($(this).text().substr(0, 17));
$(this).attr('title').append(' ...');
}
});
非常感谢!