我創(chuàng)建了一個(gè)通用函數(shù) JavaScript 文件,其中包含以下代碼:// js/common_functions.js$(document).ready(function () { function showLoader() { if ($("#loading").length > 0) { $("#loading").removeClass("hideElement"); } }});現(xiàn)在,我已經(jīng)將這個(gè)文件包含在一個(gè) PHP 文件中,并且我正在使用它,如下所示:<script type="text/javascript" src="js/common_functions.js"></script><script type="text/javascript"> $(document).ready(function () { showLoader(); });</script>文件包含工作正常,據(jù)我說,showLoader()應(yīng)該調(diào)用函數(shù),但它不起作用,我收到以下錯(cuò)誤:ReferenceError: showLoader is not defined
為什么聲明到 jQuery 就緒事件處理程序中的函數(shù)會(huì)出現(xiàn)“未定義”錯(cuò)誤?
汪汪一只貓
2022-11-11 16:42:02