私は次のようなJavaScript関数を持っています:
function recalculateWhatIfCurrentRate(aEle, aChangedLabel, recordID, yearEndCurrentRate) {
var rate = document.getElementById(aEle).value;
document.getElementById(aChangedLabel).value = yearEndCurrentRate * (1 + rate);
}
aEle = ctl00_cpMain_tbCurrentRatePercentIncrease_131578
aChangedLabel = ctl00_cpMain_lblScrollCurrentRate_131578
recordId = 131578
yearEndCurrentRate = 100.65
の実際のテキストを変更したいaChangedLabel
。
DOMで変更されないのはなぜですか?