我有一个事件监听器和一个表单。当用户按下输入键时,两者都会激活。我想要的是当用户按下回车键然后第一个事件listerner应该执行然后表单提交。那怎么办呢?
google.maps.event.addListener(autocomplete, 'place_changed', function() {
// fires when enter key is pressed
infowindow.close();
marker.setVisible(false);
input.className = '';
var place = autocomplete.getPlace();
if (!place.geometry) {
// Inform the user that the place was not found and return.
input.className = 'notfound';
return;
}
}
and
<form action="xyz.php" method="post">
//submits when enter key is pressed
<div id="searchWrapper" style="width:940px;margin-bottom:10px">
<input name="txtSearch" type="text" id="txtSearch" class="search focus" placeholder="Where do you need parking?" value=<?php echo '"'.$str.'"'; ?> />
<input class="dates search search-date" style="height:30px;background-image:url('images/sprite-master.png') ;background-position:-480px 0px; cursor:pointer;width:110px;" name="txtSearchStartDate" type="text" id="txtSearchStartDate" placeholder="today" enddate="txtSearchEndDate" />
<input name="txtSearchEndDate" type="text" id="txtSearchEndDate" class="dates search search-date" placeholder="(optional)" />
<input type="submit" value=" Search" id="btnSearch" class="btn btn-primary" />
<input name="city" id="city" type="hidden" value="">
<input name="state" id="state" type="hidden" value="">
<input name="country" id="country" type="hidden" value="">
<input name="lat" id="lat" type="hidden" value="">
<input name="long" id="long" type="hidden" value="">
</div>
</form>
答案 0 :(得分:0)
停止提交表单上的表单onsubmit功能,检查place_changed
事件中是否有地方。如果是这样,请手动提交表单,否则请更改输入类名。
var form = document.getElementById("searchForm"), // I assume the form tag has the ID searchForm
input = document.getElementById("txtSearch"),
autocomplete = new google.maps.places.Autocomplete(input);
form.onsubmit = function(event) {
// stop the form from submitting
event.preventDefault();
};
google.maps.event.addListener(autocomplete, 'place_changed', function() {
input.className = '';
var place = autocomplete.getPlace();
if (!place.geometry) {
// Inform the user that the place was not found and return.
input.className = 'notfound';
} else {
input.className = '';
// this won't fire the onsubmit function
form.submit();
}
});