gpt4 book ai didi

javascript - 更新 DOM 中的标签

转载 作者:行者123 更新时间:2023-11-30 13:18:31 27 4
gpt4 key购买 nike

我有一个如下所示的 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 中没有变化?

最佳答案

<label>元素没有 value属性,它们是标准的容器元素。他们的文本内容将在他们的 child (或后代)中表示为 TextNode。

关于javascript - 更新 DOM 中的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11146659/

27 4 0