未捕获的TypeError:e_type.appendchild不是函数|在JavaScript中添加元素

时间:2016-07-18 09:11:46

标签: javascript html

想要使用java脚本创建元素属性在html中添加新段落,但是会收到无效追加函数的错误。

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

1 个答案:

答案 0 :(得分:0)

JavaScript区分大小写:它是appendChild(大写C),而不是appendchild