我开始使用Javascript OOP,但我仍然是初学者,
我创建了一个类,我想知道在类中是否存在deleteQuote函数?
这是我的班级代码
class Quote{
deleteQuote(callback){
$('tr#'+callback.quoteid).hide('slow', function(){
$(this).remove();
});
}}
var quote = new Quote();
var y = quote.deleteQuote();
console.log(typeof y);
谢谢
最佳答案
您可以在hasOwnProperty()
的prototype
对象上Quote
class Quote{
deleteQuote(callback){
$('tr#'+callback.quoteid).hide('slow', function(){
$(this).remove();
});
}}
console.log(Quote.prototype.hasOwnProperty('deleteQuote'));