我正在创建一个动态添加它的段落,然后为其分配一个 ID。当段落被创建时,id 不会。我保留了一个返回未定义的警报。这可能是因为创建 id 的代码在段落之前执行。被建造。有没有办法等待元素被创建然后分配id。一些。事件侦听器或操作完成侦听器。这是我采用和修改的代码来解释我正在尝试做的事情:
function myFunction() {
var h = document.getElementById("myH2");
var test = "<p>My new paragraph</p>";
h.insertAdjacentHTML("afterend", test);
test.id = "1234";
alert(test.id);
}
<!DOCTYPE html>
<html>
<body>
<p>Insert a specified text as HTML, in the document.</p>
<h2 id="myH2">My Header</h2>
<p>Click the button to insert a paragraph after the header:</p>
<button onclick="myFunction()">Insert a paragraph</button>
</body>
</html>