js玩具——UI组件:ContainerUI 容器html

来源:互联网 发布:linux 查 oracle进程 编辑:程序博客网 时间:2024/05/23 17:35
/* * 容器 *  author: 吴安国 * version: 1.0 */function ContainerUI(view, element) {HtmlUI.call(this, view, element);}ContainerUI.prototype = new HtmlUI();/** * 添加子元素 * @param child  子元素 */ContainerUI.prototype.addChild = function(child){this.element.appendChild(child.element);};/** * 删除子元素 * @param child  子元素 */ContainerUI.prototype.removeChild = function(child){this.element.removeChild(child.element);};

 
原创粉丝点击