场景:再用elementUI的Collapse时,title不能支持添加图片,和样式的修改,所以使用定位之后,
left因为无法确定title长度,必须要算出长度
/**
* 处理在字符串的长度
*/
handelString(index,name){
const str = "第"+ index + "站:" + name;
let width = 0;
let html = document.createElement('div');
html.innerText = str;
html.className = 'strWidth';
document.querySelector('body').appendChild(html);
width = document.querySelector('.strWidth').offsetWidth + 25;
document.querySelector('.strWidth').remove();
console.log(width);
return width+"px";
}