我有一個像陣列值需要文本
text=['2','2<sup>2</sup>','3<sup>10</sup>'.......];
一個陣列我想造成這樣的
text=['2','22','310'......];
我怎樣才能得到這個使用JavaScript
var optionTxt = (xmlDoc.getElementsByTagName('Option')[i].textContent ? xmlDoc.getElementsByTagName('Option')[i].textContent : xmlDoc.getElementsByTagName('Option')[i].text);
optionList[i] = $.trim(optionTxt);
你有沒有考慮使用基於正則表達式替換? –