如果有一个类
function ReportItem() {
this.htmlControl = null; //对应容器
this.basemouseDown = function (e) //单击事件
{
}
this.htmlControl = document.createElement("div");
addEvent(this.htmlControl,"mousedown",this.basemouseDown);
}
function SheetArea ()
{
ReportItem.call(this);
}
inheritPrototype(SheetArea, ReportItem)
//这里是单击事件的实现
SheetArea.prototype.onmouseDown = function () {
alert("down!");
}
由于基类里已经对htmlControl上绑定了
basemouseDown,我想当单击的时候,可以通过基类的事件转到 子类的onmousedown方法
添加回答
举报
0/150
提交
取消