“未定义”不是一个函数(评估“$(“#map”).goMap”)
我用插件 goMap() 实现了一个地图。因此我写了这个函数:
$(function() {
$("#map").goMap({ ...
我能做些什么来防止这种类型错误:'undefined' 不是函数(计算 '$("#map").goMap')
在所有其他方面,没有地图。
I realized a map with the plugin goMap(). Therefore I wrote this function:
$(function() {
$("#map").goMap({ ...
What can I do to prevent this Type Error:'undefined' is not a function (evaluating '$("#map").goMap')
at all other sides, which hasn't a map.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于不需要地图的页面,可以在使用前检查是否定义了goMap。仅当它是函数时才调用它:
这是您想要的吗?
For the pages you don't want the map, you can check if goMap is defined before using it. Call it only if it's a function:
Is this what you want?