想要使用java脚本创建元素属性在html中添加新段落,但是会收到无效追加函数的错误。
**// 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);
}
答案 0 :(得分:0)
JavaScript区分大小写:它是appendChild
(大写C
),而不是appendchild
。