2016-07-18 55 views
-1

希望在使用java腳本創建元素屬性的html中添加新段落,但獲取無效追加函數的錯誤。Uncaught TypeError:e_type.appendchild不是函數|同時在JavaScript中添加元素

**// Html code :-** 

Image

<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);   
} 

回答

0

JavaScript是大小寫敏感的:這是appendChild(資本C),不appendchild

+0

**謝謝@ T.J.克勞德** –

相關問題