如何检查 JavaScript 函数是否已定义?
要检查 JavaScript 函数是否已定义,请用“undefined”检查函数。
示例
你可以尝试运行以下示例来检查 JavaScript 中的函数是否已定义 −
<!DOCTYPE html> <html> <body> <script> function display() { alert("Demo Text!"); } if ( typeof(display) === 'undefined') { document.write('undefined'); } else { document.write("Function is defined"); } </script> </body> </html>
广告