未捕获的ReferenceError:通知未定义

这个问题在这里已经有了答案:

  • JavaScript检查变量是否存在(已定义/初始化)28个答案

  • 你可以像这样使用typeof

    if (typeof Notification !== 'undefined') {
    
    }
    

    如果使用typeof ,它不会尝试实际使用该变量(这会中断并引发错误)

    链接地址: http://www.djcxy.com/p/95007.html

    上一篇: Uncaught ReferenceError: Notification is not defined

    下一篇: Check if variable is undefined not working