js玩具——UI组件:ButtonHtmlUI 按钮html

来源:互联网 发布:linux 查 oracle进程 编辑:程序博客网 时间:2024/06/05 10:40
/* *按钮html * @param view Button对象 *  author: 吴安国 * version: 1.0 */function ButtonHtmlUI(view) {HtmlUI.call(this, view, document.createElement("button"));}ButtonHtmlUI.prototype = new HtmlUI();/** * 设置按钮名称 * @param name 按钮名称 */ButtonHtmlUI.prototype.setName = function(name) {this.setText(name);};