<header>
<h2 class="title">keypress</h2>
<p class="description">Спрацьовує під час натискання клавіші, що генерує символ, для контролю введених даних.</p>
</header>
<main>
<div class="result">
<label for="textInput">Введіть текст (тільки літери):</label>
<input type="text" id="textInput" placeholder="Введіть тільки літери">
<p id="outputText">Введений текст з'явиться тут...</p>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
#textInput {
padding: 8px;
font-size: 16px;
width: 100%;
margin-bottom: 10px;
}
#outputText {
font-size: 18px;
font-weight: bold;
color: #333;
}
const textInput = document.getElementById('textInput');
const outputText = document.getElementById('outputText');
textInput.addEventListener('keypress', function(event) {
// Дозволяємо вводити тільки літери
if (!/[a-zA-Z]/.test(event.key)) {
event.preventDefault();
}
});
textInput.addEventListener('input', function(event) {
// Перетворюємо текст на верхній регістр і показуємо в реальному часі
outputText.textContent = textInput.value.toUpperCase();
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.