-1
希望在使用java腳本創建元素屬性的html中添加新段落,但獲取無效追加函數的錯誤。Uncaught TypeError:e_type.appendchild不是函數|同時在JavaScript中添加元素
**// Html code :-**
<button onclick= "add()">Click me to add New text.. </button>
**// JavaScript code :-**
function add()
{
var e_type = document.createElement("p");
var text = document.createTextNode("Hello Again..!");
e_type.appendchild(text); // error- e_type.appendchild is not a function
var parent_type = document.getElementById("self");
parent_type.appendchild(e_type);
}
**謝謝@ T.J.克勞德** –