この関数を定義しました
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 関数を呼び出すにはどうすればよいですか?