payRates
これは、2 つの並列 NodeListをソートするバブル ソートの一部ですtxlis
。
for(var index=0; index < payRates.length; index++){
if(payRates[index] < payRates[index+1]){
var temp = payRates[index];
payRates[index] = payRates[index+1];
payRates[index+1] = temp;
temp = txlis[index];
txlis[index] = txlis[index+1];
txlis[index+1] = temp;
bubbled = true;
}
payRates
浮動小数点オブジェクトの NodeList です。txlis
LI 要素の NodeList です。要素を上書きすることはできますpayRates
が、何をしようとしても要素はtxlis
元の順序のままです。
私はこの例のようにそれを試しました、私は試しました(派生元の UL 要素はlist.parentNode.replaceChild()
どこにありますか)、新しい LI 要素を最初から作成しようとしましたが、何も機能しません。list
txlis
私は何を間違っていますか?