我刚刚开始在 javascript 中上课,这是我创建的第一堂课,例如:
function MessageBox(parent){
this.id = "msg-box"; // ID for the Box
this.createElements(this.id);
this.parentElement = parent;
};
MessageBox.prototype = {
createElements: function(id){
// Create Main Container
this.containerElement = document.createElement('div');
this.containerElement.setAttribute('id', this.id);
this.parentElement.appendChild(this.containerElement);
}
};
但是当我在我的 index.html 文件中调用这个文件时,它返回错误createElements()
不是函数..
这也是我的 index.html:
<script type="text/javascript">
window.onload = function(){
var box = MessageBox('body');
//box.start();
}
</script>