我面臨的問題是我想要換行符
在代碼中動態添加的標籤在第一個標記爲錨點後永遠不會工作 我希望每個鏈接都動態添加應該去上新的生產線如何在html中動態添加換行符標籤時工作
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script>
function addAnchorNode(){
var link = document.createElement('a');
link.setAttribute('href', 'http://Google.co.uk');
link.innerHTML = "Hello, Google!";
document.body.appendChild(link);
document.body.appendchild(document.createElement('br')); //Never Works
}
</script>
</head>
<body>
<button onclick="addAnchorNode()">Click me</button>
</body>
</html>
'document.body的。 appendchild(document.createElement('br'));'說沒有方法'appendchild'。它應該是'appendChild'。 – whirlwin