嗨,我正在使用自动填充的代码获取错误 geocomplete is not a function 如果在本地(单独的文件)中使用它,它对我有用,可能是什么错误
$(function () {
$("#location").geocomplete({
//alert("gine");
details: ".geo-details",
detailsAttribute: "data-geo"
});
});
请建议
嗨,我正在使用自动填充的代码获取错误 geocomplete is not a function 如果在本地(单独的文件)中使用它,它对我有用,可能是什么错误
$(function () {
$("#location").geocomplete({
//alert("gine");
details: ".geo-details",
detailsAttribute: "data-geo"
});
});
请建议
您必须在调用方法之前添加jquery.min.js
and :jquery.geocomplete.min.js
geocomplete()
<script src="/javascripts/jquery.min.js" type="text/javascript"></script>
<script src="/javascripts/jquery.geocomplete.min.js" type="text/javascript"></script>
<script type="text/javascript">
$("#location").geocomplete({
details: ".geo-details",
detailsAttribute: "data-geo"
});
</script>