Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用此处发布的自定义日历插件创建一个 phonegap 测试项目。当我在设备就绪时调用它时,出现“未捕获的 ReferenceError:未定义日历”错误。我已经在 github 上发布了代码。如果您想看一下,这是链接。提前感谢您的帮助。
我在 github 上查看了您的代码:在 /www/index.html 中,您正在引用src="calendar.js"它假设它的路径是 /www/calendar.js,而实际上它位于 /plugins/org.devgirl.calendar/www/calendar。 js 所以你的脚本标签应该包含src="../plugins/org.devgirl.calendar/www/calendar.js"
src="calendar.js"
src="../plugins/org.devgirl.calendar/www/calendar.js"