HTMLElement.offsetWidth HTMLElement.offsetWidth // 例子自己去原文件里看吧。。// 有两个例子哦,16,17 function strip(bandName) { return bandName.replace(/^(a |the |an )/i, '').trim();}const sortedBands = bands.sort((a, b) => strip(a) > strip(b) ? 1 : -1);