我创建了一个MyClass
用 Javascript 调用的类,并将事件绑定onclick
到页面上的一个按钮。当onclick
事件触发时,我想调用另一个成员函数,但它给了我未定义的错误。请帮忙。
//MyClass constructor
MyClass = function() {
//Find search button
this.ctrlSearchButton = $("#btnSearch");
//Attach onclick event to search button
this.ctrlSearchButton.click(this.onSearchButtonClick);
};
MyClass.prototype.onSearchButtonClick = function () {
DoSearch();// ERROR : Object Expected
};
MyClass.prototype.DoSearch = function () {
alert("search called");
};