到目前为止,我已经尝试过这个,但它不起作用。如果我在这一行中将页脚更改为 div,而var x = document.getElementsByTagName("footer");不是在我的代码中显示所有 div,我也不想要这个。
谁能帮助我告诉我这段代码有什么问题以及如何使这段代码正常工作?
HTML
<p> name:</p> <div> john</div>
<p> class: </p> <div> English</div>
<p> email: </p> <div> some@gmail.com</div>
<footer>
<button onclick="show()">Contact</button>
<p id="first"></p>
<p id="second"></p>
<p id="third"></p>
</footer>
JS
function show() {
var x = document.getElementsByTagName("footer");
document.getElementById("first").innerHTML =
'first div: ' + x[0].innerHTML;
document.getElementById("second").innerHTML =
'second div: ' + x[1].innerHTML;
document.getElementById("third").innerHTML =
'third div: ' + x[2].innerHTML;
}
人到中年有点甜
千万里不及你
相关分类