te.addEventListener('input', (e) => { if (e.target.value === 'test') { window.open(' https://www.example.com/ '); }})
<html>
<head>
<title>Пароль</title>
</head>
<body>
<input type="text" name="text" placeholder="пароль" id="te"
$('te').keydown(function(e) {
if (e.key === 'Enter') {
if ($(this).val() === 'test') {
window.open(' https://www.example.com/ ');
}
}
})
</form>
</body>
</html>
как заменить нажатие энтер на клавиатуре кнопкой в данном коде?