如何使用 JavaScript 将数据附加到 元素?要将数据附加到
元素,我们必须使用 DOM(文档对象模型)操作技术。方法是在 HTML 骨架中创建一个带有 id 的空 。然后该 id 将用于获取该 ,然后我们将操纵该 div 的内部文本。句法:
document.getElementById("div_name").innerText += "Your Data Here";
例子:
How to append data to
div using JavaScript ?
GeeksforGeeks
List of Names:
输出:
- 添加数据之前:
- 添加数据后:
要将数据附加到
元素,我们必须使用 DOM(文档对象模型)操作技术。方法是在 HTML 骨架中创建一个带有 id 的空
。然后该 id 将用于获取该
,然后我们将操纵该 div 的内部文本。
句法:
document.getElementById("div_name").innerText += "Your Data Here";
例子:
How to append data to
div using JavaScript ?
GeeksforGeeks
List of Names:
输出:
- 添加数据之前:
- 添加数据后: