我定义了这个函数
function updateMapMarker(inputValue)
{
geocoder.geocode({'address': inputValue}, function(results, status)
{
if (status == google.maps.GeocoderStatus.OK)
{
if (results[0])
{
placeMarker(results[0].geometry.location);
}
else
{
alert('No results found');
}
}
else
{
alert('Geocoder failed due to: ' + status);
}
});
}
我在这样的输入中添加了一个按键事件:
$('#tutor_singin_address').keypress(function (e)
{
if(e.keyCode==13)
{
updateMapMarker( $('#tutor_singin_address').val());
}
});
但控制台抛出此错误:
Uncaught ReferenceError: updateMapMarker is not defined
如何调用我的 js 函数?