var testObj = this.getView();
在实际尝试调用
callableFunction
之前,如果我没有尝试testObj是否具有callableFunction()
,如何与DoJo(或仅 native JS)进行检查?我希望使用 native DoJo解决方案,因为我需要在所有浏览器上都可以使用它。 最佳答案
您可以这样称呼它:
testObj.callableFunction && testObj.callableFunction();
或详细信息:
if (typeof testObj.callableFunction == 'function') {
testObj.callableFunction();
}
关于javascript - 如何检查对象是否具有功能? (DoJo),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14961891/