当我调用我的函数时,当它命中appendChild时它会失败我不明白为什么:
我创建了我的功能:
Auto.prototype.create = function(container){
this.contain = container;
var mask = document.createElement("div");
mask.style.position = "absolute";
this.contain.appendChild(mask);
当我调用create函数时,它在命中appenChild时失败我是否也需要调用它?因为我认为调用函数就是我所需要的。