为什么当我按Enter键时它不会运行code
,导致我将应运行的代码放在if statement
中。
当我按enter
时,它console log
不能正常运行。
document.getElementById('city-location').addEventListener('keyup', (e) => {
const LOCATION = document.getElementById('city-location').value
if(e.target.which == 13 || e.target.keyCode == 13) {
weatherApi.changeLocation(LOCATION);
storage.setStorage(LOCATION);
getWeatherApi();
} else {
console.log('Wrong key pressed');
}
e.preventDefault();
})
这是标记:
<form id="weather-modal-form">
<div class="form-group">
<label for="city">City</label>
<input type="text" id="city-location">
</div>
</form>
答案 0 :(得分:3)
您应该为输入按钮添加submit
事件。
document.getElementById('weather-modal-form').addEventListener('submit', (e) => {
e.preventDefault();
console.log("work's");
})
<form id="weather-modal-form">
<div class="form-group">
<label for="city">City</label>
<input type="text" id="city-location">
</div>
</form>